From 63e000d0113564c1ad5e34a5fb83351aa022c233 Mon Sep 17 00:00:00 2001 From: Diego Pasquali Date: Fri, 30 Aug 2024 11:06:33 +0200 Subject: [PATCH 001/117] Fix workflows --- .github/CODE_OF_CONDUCT.md | 77 ----------- .github/CONTRIBUTING.md | 151 ---------------------- .github/ISSUE_TEMPLATE/Bug_issue.md | 24 ---- .github/ISSUE_TEMPLATE/Feature_request.md | 17 --- .github/PULL_REQUEST_TEMPLATE.md | 43 ------ .github/workflows/ci.yml | 14 -- .github/workflows/cla.yml | 22 ---- 7 files changed, 348 deletions(-) delete mode 100644 .github/CODE_OF_CONDUCT.md delete mode 100644 .github/CONTRIBUTING.md delete mode 100644 .github/ISSUE_TEMPLATE/Bug_issue.md delete mode 100644 .github/ISSUE_TEMPLATE/Feature_request.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 .github/workflows/cla.yml diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md deleted file mode 100644 index b4350ac3777..00000000000 --- a/.github/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,77 +0,0 @@ - -# Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to make participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies within all project spaces, and it also applies when -an individual is representing the project or its community in public spaces. -Examples of representing a project or community include using an official -project e-mail address, posting via an official social media account, or acting -as an appointed representative at an online or offline event. Representation of -a project may be further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at . All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md deleted file mode 100644 index e166efb37cb..00000000000 --- a/.github/CONTRIBUTING.md +++ /dev/null @@ -1,151 +0,0 @@ -# Contributing - -[Before contributing](#before-contributing) | -[Scope](#scope) | -[Theme code principles](#theme-code-principles) | -[Contributing code](#contributing-code) | -[Reporting a bug](#reporting-a-bug) | -[Reviewing](#reviewing) - -We're really glad you're reading this, because we would love to have more developers contribute to this theme! If you're passionate about building for the next million entrepreneurs, you're in the right place. - -## Before contributing - -If you encounter a bug or think of a useful feature for Dawn, please [create a new issue](https://github.com/Shopify/dawn/issues/new). Creating an issue before jumping into code ensures we can discuss it and determine whether it aligns with the direction of the theme. - -If you want to contribute to the theme, regardless of whether it's a small bug fix or correcting a typo, please feel free to do so. Any help goes a long way! Also, contributions aren't necessarily all code related. Other contributions can be in the form of issues, pull requests, discussions, etc. - -## Scope - -This Github repository exists for the theme development community to discuss and solve problems directly related to Dawn. It **is not the place** to discuss general theme development problems, nor the place to seek help for non-Dawn related problems. - -Shopify theme development is a big topic and it's completely normal that you will encounter problems which might require you to reach out for help. In fact, we provide several knowledge and support platforms for theme development already: - -* [Shopify Development](https://shopify.dev/themes) -* [Shopify Help Center](https://help.shopify.com/themes) -* [Shopify Forum](https://ecommerce.shopify.com/forums) -* [Shopify Experts](https://experts.shopify.com/) - -## Theme code principles - -Before contributing to Dawn, please read the following theme code principles to better understand our fundamental approach to theme development. The expectation is that you follow these principles as you build for Dawn. - -### Why these principles? - -Browsers provide APIs to solve many problems: from [WebGL](https://en.wikipedia.org/wiki/WebGL) and [WASM](https://en.wikipedia.org/wiki/WebAssembly)-powered apps to static websites. The best APIs to use depends on the thing you’re building. Themes power ecommerce websites. In most cases, _Web-native_—making the most of the built-in features of browsers: HTTP, HTML, CSS, JavaScript, and the DOM—is a perfect fit for ecommerce websites. Ecommerce needs incredibly fast websites for mostly “logged out” traffic. - -### Web-native in its purest form - -_The most important principle._ - -Themes run on the [evergreen Web](https://www.w3.org/2001/tag/doc/evergreen-web/). We leverage the latest web browsers to their fullest, while maintaining support for the older ones through progressive enhancement—not polyfills. - -We write bespoke Web-native code with no abstractions. Frameworks, libraries, and dependencies don’t belong in our themes. - -We engage with the browser ecosystem on behalf of our merchants to make Web-native ecommerce the best it can be. - -“Don’t repeat yourself” is an anti-pattern. We do our utmost best to do more with less, but we don’t build abstractions around repetition. Instead, we use linting and testing to enforce consistently-good and up-to-date Web-native code. - -### Lean, fast, and reliable - -_The principle requirement._ - -Code must be lean, fast, and reliable. Our targets include: - -* Zero [Cumulative Layout Shift](https://web.dev/cls/) -* No DOM manipulation before user input -* No render-blocking JavaScript -* No [long tasks](https://developer.mozilla.org/en-US/docs/Web/API/Long_Tasks_API) - -Functionality and design defaults to “no” until it meets this requirement. Code ships on quality. - -We relentlessly and continuously optimize code within the constraint of being Web-native. If ever there is a feature that browsers have not made fast yet, we either don’t use it, or use it “as is” if it is fast enough. We trust that browsers will get faster over time. - -Themes must be built with purpose. They shouldn’t support each and every feature in Shopify. - -### Server-rendered - -_Our main constraint._ - -HTML must be rendered by Shopify servers using [Liquid](https://shopify.dev/api/liquid). Business logic and platform primitives such as translations and money formatting don’t belong on the client. - -Server-rendered doesn’t imply “full page reload”. Async and on-demand rendering of parts of the page is OK, but we do it sparingly as a progressive enhancement. - -### Functional, not pixel-perfect - -_No buyer is left behind._ - -The Web doesn’t require each page to be rendered pixel-perfect by each browser engine. Using semantic markup, progressive enhancement, and clever design, we ensure that themes remain functional regardless of the browser. - -And since legacy browsers are often the slowest, we don’t burden them with polyfills. We rely instead on the fail-open nature of the Web to provide them with a “minimal but functional” experience. - -## Contributing code - -You can follow these steps to go from setting up a store to creating a pull request for Dawn. - ->:information_source: We'll assume you're already set up with Git and GitHub (if you're not familiar with these, [start with these docs](https://docs.github.com/github/getting-started-with-github/quickstart/set-up-git)). - -1. Set up a [development store](https://shopify.dev/themes/tools/development-stores) so you can test your code changes (assuming you don't already have a store). -2. Install the [Shopify CLI](https://github.com/Shopify/shopify-cli) by following [these steps](https://shopify.dev/themes/tools/cli/installation). -3. Fork the repository, clone it and create a new branch: -```sh -git clone git@github.com:your-username/dawn.git -cd dawn -git checkout -b your-new-branch-name -``` -4. Launch a development server: -```sh -shopify theme serve -``` -5. Add your changes to the codebase. -6. Commit your changes: -```sh -git commit -a -m="Your commit message" -``` -7. Push your commit to your forked repository: -```sh -git push origin your-new-branch-name -``` -8. Open a pull request. See [GitHub's official documentation](https://help.github.com/articles/creating-a-pull-request-from-a-fork/) for more details. -9. Before you can merge your pull request, you must sign Shopify's [Contributor License Agreement (CLA)](https://cla.shopify.com/). - -## Reporting a bug - -Bugs are tracked as [GitHub issues](https://github.com/Shopify/dawn/issues). Search open issues to see if someone else has reported a similar bug. If it's something new, [open an issue](https://github.com/Shopify/dawn/issues/new). We'll use the issue to have a conversation about the problem you want to fix. - -When creating a new issue, please ensure the issue is clear and include additional details to help maintainers reproduce it: - -* **Use a clear and descriptive title** for the issue to identify the problem. -* **Describe the exact steps which reproduce the problem** in as many details as possible. -* **Provide specific examples to demonstrate the steps.** Include links to files, or copy/pasteable snippets. If you're providing snippets in the issue, use Markdown code blocks. -* **Describe the behavior you observed** after following the steps and point out what exactly is the problem with that behavior. -* **Explain which behavior you expected to see** instead and why. -* **Include screenshots and animated GIFs** where possible. - -## Reviewing - -We (the Themes team) review every single PR. The purpose of reviews is to create the best version of Dawn we can for merchants, developers, and others who use it. - -:yellow_heart: Reviews are always respectful, acknowledging that everyone did the best possible job with the knowledge they had at the time. -:yellow_heart: Reviews discuss content, not the person who created it. -:yellow_heart: Reviews are constructive and start conversation around feedback. - -### Self review - -You should always review your own PR first. - -For code changes, make sure that you: -- [ ] Confirm that the changes meet our [theme code principles](#theme-code-principles). -- [ ] Check new or updated Liquid docs to confirm that the code used is up to date and isn't deprecated. -- [ ] If there are any failing checks in your PR, troubleshoot them until they're all passing. -- [ ] Add @Shopify/themes-front-end-developers as a reviewer. - -### Pull request template - -When you open a pull request, you must fill out the "Ready for review" template before we can review your PR. This template helps reviewers understand your changes and the purpose of your pull request. - -### Suggested changes - -We may ask for changes to be made before a PR can be merged, either using [suggested changes](https://docs.github.com/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request) or pull request comments. You can apply suggested changes directly through the UI. You can make any other changes in your fork, then commit them to your branch. - -As you update your PR and apply changes, mark each conversation as [resolved](https://docs.github.com/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request#resolving-conversations). diff --git a/.github/ISSUE_TEMPLATE/Bug_issue.md b/.github/ISSUE_TEMPLATE/Bug_issue.md deleted file mode 100644 index 240ad6046a6..00000000000 --- a/.github/ISSUE_TEMPLATE/Bug_issue.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Bug report -about: Use this template for reporting a bug -labels: bug ---- - -## Describe the current behavior - - -## Describe the expected behavior - - -## Version information (Dawn, browsers and operating systems) - -- Dawn Version: 7.0.1 -- Chrome Version 108.0.5359.124 -- macOS Version 13.1 - -## Possible solution - - -## Additional context/screenshots - - diff --git a/.github/ISSUE_TEMPLATE/Feature_request.md b/.github/ISSUE_TEMPLATE/Feature_request.md deleted file mode 100644 index 7e3238d515f..00000000000 --- a/.github/ISSUE_TEMPLATE/Feature_request.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: Feature request -about: Use this template for suggesting a Dawn enhancement -labels: enhancement ---- - -## Describe the enhancement you'd like - - - -## Describe alternatives you've considered - - - -## Additional context/screenshots - - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 6694546860d..00000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,43 +0,0 @@ -### PR Summary: - - - - -### Why are these changes introduced? - -Fixes #0. - -### 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 - - -- [Store](url) -- [Editor](url) - -### Checklist -- [ ] Added PR summary for [release notes](https://themes.shopify.com/themes/dawn/styles/default#ReleaseNotes) -- [ ] Requested review from UX (Only for changes that are affecting the experience or perceivable visual details) -- [ ] Created a ticket for the [help.shopify.com](https://help.shopify.com) documentation team about updates to theme settings. (Internal-only task) -- [ ] Followed [theme code principles](https://github.com/Shopify/dawn/blob/main/.github/CONTRIBUTING.md#theme-code-principles) -- [ ] Linted with [Theme Check](https://github.com/Shopify/theme-check) -- [ ] Tested on [mobile](https://shopify.dev/themes/store/requirements#mobile-browser-requirements) -- [ ] Tested on [multiple browsers](https://shopify.dev/themes/store/requirements#desktop-browser-requirements) -- [ ] Tested for [accessibility](https://shopify.dev/themes/best-practices/accessibility) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1612552a734..17fc89208a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,20 +1,6 @@ name: CI on: [push] jobs: - lhci: - name: Lighthouse - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Lighthouse - uses: shopify/lighthouse-ci-action@v1 - with: - store: ${{ secrets.SHOP_STORE_OS2 }} - password: ${{ secrets.SHOP_PASSWORD_OS2 }} - access_token: ${{ secrets.SHOP_ACCESS_TOKEN }} - collection_handle: all - lhci_github_app_token: ${{ secrets.LHCI_GITHUB_TOKEN }} - pull_theme: ${{ secrets.SHOP_PULL_THEME }} theme-check: name: Theme Check runs-on: ubuntu-latest diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml deleted file mode 100644 index 9c29c5c756a..00000000000 --- a/.github/workflows/cla.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Contributor License Agreement (CLA) - -on: - pull_request_target: - types: [opened, synchronize, reopened] - issue_comment: - types: [created] - -jobs: - cla: - runs-on: ubuntu-latest - if: | - (github.event.issue.pull_request - && !github.event.issue.pull_request.merged_at - && contains(github.event.comment.body, 'signed') - ) - || (github.event.pull_request && !github.event.pull_request.merged) - steps: - - uses: Shopify/shopify-cla-action@v1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - cla-token: ${{ secrets.CLA_TOKEN }} From 721212b2cf50226f572261174ad1c24bfb513bef Mon Sep 17 00:00:00 2001 From: Diego Pasquali Date: Fri, 30 Aug 2024 11:13:19 +0200 Subject: [PATCH 002/117] Apply current custom theme --- LICENSE.md | 2 +- README.md | 14 +- assets/animations.js | 2 +- assets/base.css | 73 ++- assets/cart-drawer.js | 2 +- assets/cart-notification.js | 6 +- assets/cart.js | 8 +- assets/collage.css | 8 +- assets/component-card.css | 8 +- assets/component-cart-notification.css | 14 +- assets/component-deferred-media.css | 10 +- assets/component-facets.css | 32 +- assets/component-localization-form.css | 4 +- assets/component-menu-drawer.css | 12 +- assets/component-model-viewer-ui.css | 4 +- assets/component-newsletter.css | 8 +- assets/component-pickup-availability.css | 4 +- assets/component-product-variant-picker.css | 8 +- assets/component-slideshow.css | 4 +- assets/component-swatch-input.css | 8 +- assets/component-totals.css | 2 +- assets/details-disclosure.js | 2 +- assets/details-modal.js | 2 +- assets/facets.js | 8 +- assets/global.js | 30 +- assets/localization-form.js | 8 +- assets/mask-blobs.css | 114 ++++- assets/media-gallery.js | 7 +- assets/pickup-availability.js | 4 +- assets/predictive-search.js | 2 +- assets/price-per-item.js | 27 +- assets/product-form.js | 6 +- assets/product-info.js | 42 +- assets/product-modal.js | 4 +- assets/product-model.js | 2 +- assets/quantity-popover.js | 2 +- assets/quick-add-bulk.js | 8 +- assets/quick-add.js | 2 +- assets/quick-order-list.css | 6 +- assets/quick-order-list.js | 14 +- assets/recipient-form.js | 2 +- assets/search-form.js | 2 +- assets/section-email-signup-banner.css | 4 +- assets/section-main-product.css | 46 +- assets/share.js | 2 +- assets/show-more.js | 8 +- assets/template-giftcard.css | 24 +- config/settings_data.json | 256 ++++++++++- config/settings_schema.json | 2 +- layout/theme.liquid | 17 +- locales/it.json | 65 +-- release-notes.md | 2 + sections/announcement-bar.liquid | 8 +- sections/dual-images.liquid | 195 ++++++++ sections/footer-group.json | 76 ++-- sections/header-group.json | 56 ++- sections/header.liquid | 4 +- sections/main-collection-banner.liquid | 59 ++- sections/main-product.liquid | 12 + sections/multicolumn.liquid | 4 +- sections/separator.liquid | 59 +++ snippets/header-mega-menu.liquid | 4 +- templates/404.json | 54 ++- templates/article.json | 38 +- templates/blog.json | 4 +- templates/cart.json | 45 +- templates/collection.SELETTI.json | 84 ++++ templates/collection.bitossi-home.json | 92 ++++ templates/collection.brabantia.json | 79 ++++ templates/collection.brandani.json | 92 ++++ templates/collection.json | 18 +- templates/collection.knindustrie.json | 93 ++++ templates/customers/account.json | 10 +- templates/customers/activate_account.json | 10 +- templates/customers/addresses.json | 10 +- templates/customers/login.json | 32 +- templates/customers/order.json | 10 +- templates/customers/register.json | 10 +- templates/customers/reset_password.json | 10 +- templates/index.json | 464 +++++++++++++++----- templates/list-collections.json | 8 +- templates/page.brand.json | 4 + templates/page.contact.json | 13 +- templates/page.json | 14 +- templates/page.newsletter.json | 6 + templates/password.json | 27 +- templates/product.json | 201 ++------- templates/search.json | 6 +- translation.yml | 34 +- 89 files changed, 2126 insertions(+), 772 deletions(-) create mode 100644 sections/dual-images.liquid create mode 100644 sections/separator.liquid create mode 100644 templates/collection.SELETTI.json create mode 100644 templates/collection.bitossi-home.json create mode 100644 templates/collection.brabantia.json create mode 100644 templates/collection.brandani.json create mode 100644 templates/collection.knindustrie.json create mode 100644 templates/page.brand.json create mode 100644 templates/page.newsletter.json diff --git a/LICENSE.md b/LICENSE.md index 7edb8f4b502..a8c80a5fb5b 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -2,7 +2,7 @@ Copyright (c) 2021-present Shopify Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, sell and/or create derivative works of the Software or any part thereof, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The rights granted above may only be exercised to develop themes that integrate or interoperate with Shopify software or services, and, if applicable, to distribute, offer for sale or otherwise make available any such themes via the Shopify Theme Store. All other uses of the Software are strictly prohibited. +The rights granted above may only be exercised to develop themes that integrate or interoperate with Shopify software or services, and, if applicable, to distribute, offer for sale or otherwise make available any such themes via the Shopify Theme Store. All other uses of the Software are strictly prohibited. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/README.md b/README.md index 3dea7f613e0..c635dfe183e 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,15 @@ Dawn represents a HTML-first, JavaScript-only-as-needed approach to theme development. It's Shopify's first source available theme with performance, flexibility, and [Online Store 2.0 features](https://www.shopify.com/partners/blog/shopify-online-store) built-in and acts as a reference for building Shopify themes. -* **Web-native in its purest form:** Themes run on the [evergreen web](https://www.w3.org/2001/tag/doc/evergreen-web/). We leverage the latest web browsers to their fullest, while maintaining support for the older ones through progressive enhancement—not polyfills. -* **Lean, fast, and reliable:** Functionality and design defaults to “no” until it meets this requirement. Code ships on quality. Themes must be built with purpose. They shouldn’t support each and every feature in Shopify. -* **Server-rendered:** HTML must be rendered by Shopify servers using Liquid. Business logic and platform primitives such as translations and money formatting don’t belong on the client. Async and on-demand rendering of parts of the page is OK, but we do it sparingly as a progressive enhancement. -* **Functional, not pixel-perfect:** The Web doesn’t require each page to be rendered pixel-perfect by each browser engine. Using semantic markup, progressive enhancement, and clever design, we ensure that themes remain functional regardless of the browser. +- **Web-native in its purest form:** Themes run on the [evergreen web](https://www.w3.org/2001/tag/doc/evergreen-web/). We leverage the latest web browsers to their fullest, while maintaining support for the older ones through progressive enhancement—not polyfills. +- **Lean, fast, and reliable:** Functionality and design defaults to “no” until it meets this requirement. Code ships on quality. Themes must be built with purpose. They shouldn’t support each and every feature in Shopify. +- **Server-rendered:** HTML must be rendered by Shopify servers using Liquid. Business logic and platform primitives such as translations and money formatting don’t belong on the client. Async and on-demand rendering of parts of the page is OK, but we do it sparingly as a progressive enhancement. +- **Functional, not pixel-perfect:** The Web doesn’t require each page to be rendered pixel-perfect by each browser engine. Using semantic markup, progressive enhancement, and clever design, we ensure that themes remain functional regardless of the browser. You can find a more detailed version of our theme code principles in the [contribution guide](https://github.com/Shopify/dawn/blob/main/.github/CONTRIBUTING.md#theme-code-principles). ## Getting started + We recommend using Dawn as a starting point for theme development. [Learn more on Shopify.dev](https://shopify.dev/themes/getting-started/create). > If you're building a theme for the Shopify Theme Store, then you can use Dawn as a starting point. However, the theme that you submit needs to be [substantively different from Dawn](https://shopify.dev/themes/store/requirements#uniqueness) so that it provides added value for merchants. Learn about the [ways that you can use Dawn](https://shopify.dev/themes/tools/dawn#ways-to-use-dawn). @@ -33,14 +34,19 @@ Say you're building a new theme off Dawn but you still want to be able to pull i 1. Navigate to your local theme folder. 2. Verify the list of remotes and validate that you have both an `origin` and `upstream`: + ```sh git remote -v ``` + 3. If you don't see an `upstream`, you can add one that points to Shopify's Dawn repository: + ```sh git remote add upstream https://github.com/Shopify/dawn.git ``` + 4. Pull in the latest Dawn changes into your repository: + ```sh git fetch upstream git pull upstream main diff --git a/assets/animations.js b/assets/animations.js index 2622f602e00..0063968e1c8 100644 --- a/assets/animations.js +++ b/assets/animations.js @@ -66,7 +66,7 @@ function initializeScrollZoomAnimationTrigger() { element.style.setProperty('--zoom-in-ratio', 1 + scaleAmount * percentageSeen(element)); }), - { passive: true } + { passive: true }, ); }); } diff --git a/assets/base.css b/assets/base.css index 979d9bd2ff7..d8ba9b498d6 100644 --- a/assets/base.css +++ b/assets/base.css @@ -5,7 +5,8 @@ --alpha-badge-border: 0.1; --focused-base-outline: 0.2rem solid rgba(var(--color-foreground), 0.5); --focused-base-outline-offset: 0.3rem; - --focused-base-box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + --focused-base-box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .product-card-wrapper .card, @@ -757,13 +758,17 @@ summary::-webkit-details-marker { .focus-offset:focus-visible { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 1rem; - box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 1rem rgb(var(--color-background)), + 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); } .focus-offset.focused { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 1rem; - box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 1rem rgb(var(--color-background)), + 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); } /* component-title */ @@ -1269,8 +1274,8 @@ button.shopify-payment-button__button--unbranded { left: var(--buttons-border-width); z-index: 1; border-radius: var(--buttons-radius); - box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) - rgba(var(--color-button-text), var(--border-opacity)), + box-shadow: + 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(var(--color-button-text), var(--border-opacity)), 0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background)); transition: box-shadow var(--duration-short) ease; } @@ -1280,8 +1285,8 @@ button.shopify-payment-button__button--unbranded { .customer button:hover::after, .shopify-payment-button__button--unbranded:hover::after { --border-offset: 1.3px; - box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) - rgba(var(--color-button-text), var(--border-opacity)), + box-shadow: + 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(var(--color-button-text), var(--border-opacity)), 0 0 0 calc(var(--buttons-border-width) + 1px) rgba(var(--color-button), var(--alpha-button-background)); } @@ -1297,7 +1302,9 @@ button.shopify-payment-button__button--unbranded { .shopify-payment-button__button--unbranded:focus, .shopify-payment-button [role='button']:focus { outline: 0; - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.5), + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0 0.5rem rgba(var(--color-foreground), 0.5), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } @@ -1529,7 +1536,9 @@ details[open] > .share-button__fallback { .share-button__fallback .field__input:-webkit-autofill { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 0.1rem; - box-shadow: 0 0 0 0.1rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.1rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .share-button__fallback .field__input { @@ -1733,7 +1742,9 @@ details[open] > .share-button__fallback { margin-bottom: 0; pointer-events: none; position: absolute; - transition: top var(--duration-short) ease, font-size var(--duration-short) ease; + transition: + top var(--duration-short) ease, + font-size var(--duration-short) ease; color: rgba(var(--color-foreground), 0.75); letter-spacing: 0.1rem; line-height: 1.5; @@ -2722,7 +2733,9 @@ details[open] .modal-overlay::after { position: absolute; opacity: 1; transform: scale(1); - transition: transform 150ms ease, opacity 150ms ease; + transition: + transform 150ms ease, + opacity 150ms ease; } details:not([open]) > .header__icon--menu .icon-close, @@ -2837,7 +2850,9 @@ details[open] > .header__menu-item .icon-caret { } .header__submenu { - transition: opacity var(--duration-default) ease, transform var(--duration-default) ease; + transition: + opacity var(--duration-default) ease, + transform var(--duration-default) ease; } .global-settings-popup, @@ -3340,7 +3355,9 @@ details-disclosure > details { .animate--hover-3d-lift .customer button, .animate--hover-3d-lift .shopify-payment-button__button, .animate--hover-3d-lift .deferred-media .deferred-media__poster-button { - transition: transform var(--duration-long) ease, box-shadow var(--duration-long) ease; + transition: + transform var(--duration-long) ease, + box-shadow var(--duration-long) ease; transform-origin: center; } @@ -3351,10 +3368,15 @@ details-disclosure > details { .animate--hover-3d-lift .customer button:not([disabled]):hover, .animate--hover-3d-lift .shopify-payment-button__button:hover, .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button { - transition: transform var(--duration-extended) ease, box-shadow var(--duration-long) ease; /* Slow the card transition speed while hover is active. */ + transition: + transform var(--duration-extended) ease, + box-shadow var(--duration-long) ease; /* Slow the card transition speed while hover is active. */ transform: rotate(1deg); - box-shadow: -1rem -1rem 1rem -1rem rgba(0, 0, 0, 0.05), 1rem 1rem 1rem -1rem rgba(0, 0, 0, 0.05), - 0 0 0.5rem 0 rgba(255, 255, 255, 0), 0 2rem 3.5rem -2rem rgba(0, 0, 0, 0.5); + box-shadow: + -1rem -1rem 1rem -1rem rgba(0, 0, 0, 0.05), + 1rem 1rem 1rem -1rem rgba(0, 0, 0, 0.05), + 0 0 0.5rem 0 rgba(255, 255, 255, 0), + 0 2rem 3.5rem -2rem rgba(0, 0, 0, 0.5); } .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button { @@ -3380,11 +3402,15 @@ details-disclosure > details { .animate--hover-3d-lift .card-wrapper .card--shape.card--standard:not(.card--text) .card__inner { box-shadow: none; - transition: transform var(--duration-long) ease, filter var(--duration-long) ease; + transition: + transform var(--duration-long) ease, + filter var(--duration-long) ease; } .animate--hover-3d-lift .card-wrapper:hover .card--shape.card--standard:not(.card--text) .card__inner { - transition: transform calc(2 * var(--duration-extended)) ease, filter var(--duration-long) ease; /* Slow the card transition speed while hover is active. */ + transition: + transform calc(2 * var(--duration-extended)) ease, + filter var(--duration-long) ease; /* Slow the card transition speed while hover is active. */ filter: drop-shadow(0rem 2rem 2rem rgba(0, 0, 0, 0.15)) drop-shadow(0rem 1rem 1rem rgba(0, 0, 0, 0.15)); } @@ -3425,7 +3451,9 @@ details-disclosure > details { left: 0; opacity: 0; pointer-events: none; - transition: background-position calc(2 * var(--duration-extended)) ease, opacity var(--duration-default) ease; + transition: + background-position calc(2 * var(--duration-extended)) ease, + opacity var(--duration-default) ease; mix-blend-mode: overlay; background-size: 400% 100%; background-position: 90% 0; @@ -3441,7 +3469,9 @@ details-disclosure > details { .animate--hover-3d-lift .card-wrapper:hover .card--card:before, .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__media:after { opacity: 0.2; - transition: background-position 6s ease, opacity var(--duration-long) ease; + transition: + background-position 6s ease, + opacity var(--duration-long) ease; background-position: left; z-index: 2; } @@ -3491,7 +3521,8 @@ details-disclosure > details { .animate--hover-vertical-lift .customer button:not([disabled]):hover:after, .animate--hover-vertical-lift .shopify-payment-button__button:not([disabled]):hover:after { --border-offset: 0.3px; /* Default is 1.3px as defined above in this file. This removes 1px to prevent the border from growing on buttons when this effect is on. */ - box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) + box-shadow: + 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(var(--color-button-text), var(--border-opacity)), 0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background)); } diff --git a/assets/cart-drawer.js b/assets/cart-drawer.js index ad37f3cb871..3930b7855af 100644 --- a/assets/cart-drawer.js +++ b/assets/cart-drawer.js @@ -43,7 +43,7 @@ class CartDrawer extends HTMLElement { const focusElement = this.querySelector('.drawer__inner') || this.querySelector('.drawer__close'); trapFocus(containerToTrapFocusOn, focusElement); }, - { once: true } + { once: true }, ); document.body.classList.add('overflow-hidden'); diff --git a/assets/cart-notification.js b/assets/cart-notification.js index 7e8a06cdf2e..049a70d2177 100644 --- a/assets/cart-notification.js +++ b/assets/cart-notification.js @@ -8,7 +8,7 @@ class CartNotification extends HTMLElement { this.notification.addEventListener('keyup', (evt) => evt.code === 'Escape' && this.close()); this.querySelectorAll('button[type="button"]').forEach((closeButton) => - closeButton.addEventListener('click', this.close.bind(this)) + closeButton.addEventListener('click', this.close.bind(this)), ); } @@ -21,7 +21,7 @@ class CartNotification extends HTMLElement { this.notification.focus(); trapFocus(this.notification); }, - { once: true } + { once: true }, ); document.body.addEventListener('click', this.onBodyClick); @@ -39,7 +39,7 @@ class CartNotification extends HTMLElement { this.getSectionsToRender().forEach((section) => { document.getElementById(section.id).innerHTML = this.getSectionInnerHTML( parsedState.sections[section.id], - section.selector + section.selector, ); }); diff --git a/assets/cart.js b/assets/cart.js index eef5f1f66d5..d21d8ce9552 100644 --- a/assets/cart.js +++ b/assets/cart.js @@ -77,7 +77,7 @@ class CartItems extends HTMLElement { index, inputValue, document.activeElement.getAttribute('name'), - event.target.dataset.quantityVariantId + event.target.dataset.quantityVariantId, ); } } @@ -181,7 +181,7 @@ class CartItems extends HTMLElement { document.getElementById(section.id).querySelector(section.selector) || document.getElementById(section.id); elementToReplace.innerHTML = this.getSectionInnerHTML( parsedState.sections[section.section], - section.selector + section.selector, ); }); const updatedValue = parsedState.items[line - 1] ? parsedState.items[line - 1].quantity : undefined; @@ -278,9 +278,9 @@ if (!customElements.get('cart-note')) { debounce((event) => { const body = JSON.stringify({ note: event.target.value }); fetch(`${routes.cart_update_url}`, { ...fetchConfig(), ...{ body } }); - }, ON_CHANGE_DEBOUNCE_TIMER) + }, ON_CHANGE_DEBOUNCE_TIMER), ); } - } + }, ); } diff --git a/assets/collage.css b/assets/collage.css index 67618cca1a9..4bff5c54f7a 100644 --- a/assets/collage.css +++ b/assets/collage.css @@ -181,12 +181,16 @@ } .collage-card .deferred-media__poster:focus:after { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); outline: 0.2rem solid rgba(var(--color-foreground), 0.5); } .collage-card .deferred-media__poster:focus-visible:after { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); outline: 0.2rem solid rgba(var(--color-foreground), 0.5); } diff --git a/assets/component-card.css b/assets/component-card.css index c72491d8d59..5e39df2082f 100644 --- a/assets/component-card.css +++ b/assets/component-card.css @@ -361,12 +361,16 @@ } .card__heading a:focus:after { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); outline: 0.2rem solid rgba(var(--color-foreground), 0.5); } .card__heading a:focus-visible:after { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); outline: 0.2rem solid rgba(var(--color-foreground), 0.5); } diff --git a/assets/component-cart-notification.css b/assets/component-cart-notification.css index 7af62a676ce..4992d37d378 100644 --- a/assets/component-cart-notification.css +++ b/assets/component-cart-notification.css @@ -24,13 +24,15 @@ } .cart-notification.focused { - box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3), + box-shadow: + 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3), var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity)); } .cart-notification:focus-visible { - box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3), + box-shadow: + 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3), var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity)); } @@ -54,12 +56,16 @@ } .cart-notification.animate { - transition: transform var(--duration-short) ease, visibility 0s var(--duration-short) ease; + transition: + transform var(--duration-short) ease, + visibility 0s var(--duration-short) ease; } .cart-notification.active { transform: translateY(0); - transition: transform var(--duration-default) ease, visibility 0s; + transition: + transform var(--duration-default) ease, + visibility 0s; visibility: visible; } diff --git a/assets/component-deferred-media.css b/assets/component-deferred-media.css index 978d9c97250..8582ce75854 100644 --- a/assets/component-deferred-media.css +++ b/assets/component-deferred-media.css @@ -36,7 +36,8 @@ .deferred-media__poster:focus-visible { outline: none; - box-shadow: 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)), + box-shadow: + 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)), 0 0 0 calc(var(--media-border-width) + 0.3rem) rgb(var(--color-background)), 0 0 0 calc(var(--media-border-width) + 0.5rem) rgba(var(--color-foreground), 0.5); border-radius: calc(var(--media-radius) - var(--media-border-width)); @@ -44,7 +45,8 @@ .deferred-media__poster:focus { outline: none; - box-shadow: 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)), + box-shadow: + 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)), 0 0 0 calc(var(--media-border-width) + 0.3rem) rgb(var(--color-background)), 0 0 0 calc(var(--media-border-width) + 0.5rem) rgba(var(--color-foreground), 0.5); border-radius: calc(var(--media-radius) - var(--media-border-width)); @@ -80,7 +82,9 @@ left: 50%; top: 50%; transform: translate(-50%, -50%) scale(1); - transition: transform var(--duration-short) ease, color var(--duration-short) ease; + transition: + transform var(--duration-short) ease, + color var(--duration-short) ease; z-index: 1; } diff --git a/assets/component-facets.css b/assets/component-facets.css index 7eb860faf62..2b4047cfc2b 100644 --- a/assets/component-facets.css +++ b/assets/component-facets.css @@ -135,25 +135,33 @@ .mobile-facets__sort .select__select:focus-visible { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 0.3rem; - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .mobile-facets__sort .select__select.focused { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 0.3rem; - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .facet-filters__sort:focus-visible { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 1rem; - box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 1rem rgb(var(--color-background)), + 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); } .facet-filters__sort.focused { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 1rem; - box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 1rem rgb(var(--color-background)), + 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3); } .facets { @@ -393,7 +401,9 @@ .facets-layout-grid--image .facets__label.active:has(:focus-visible) { outline-color: rgb(var(--color-foreground)); outline-width: 0.1rem; - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.5), + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0 0.5rem rgba(var(--color-foreground), 0.5), 0 0 0.7rem 0.1rem rgba(var(--color-foreground), 0.25); } @@ -677,13 +687,17 @@ a.active-facets__button.focused { } a.active-facets__button:focus-visible .active-facets__button-inner { - box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2), 0 0 0 0.2rem rgb(var(--color-background)), + box-shadow: + 0 0 0 0.1rem rgba(var(--color-foreground), 0.2), + 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0 0.4rem rgb(var(--color-foreground)); outline: none; } a.active-facets__button.focused .active-facets__button-inner { - box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2), 0 0 0 0.2rem rgb(var(--color-background)), + box-shadow: + 0 0 0 0.1rem rgba(var(--color-foreground), 0.2), + 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0 0.4rem rgb(var(--color-foreground)); outline: none; } @@ -978,7 +992,9 @@ details.menu-opening .mobile-facets__close .svg-wrapper { } .js details[open] > .mobile-facets__submenu { - transition: transform 0.4s cubic-bezier(0.29, 0.63, 0.44, 1), visibility 0.4s cubic-bezier(0.29, 0.63, 0.44, 1); + transition: + transform 0.4s cubic-bezier(0.29, 0.63, 0.44, 1), + visibility 0.4s cubic-bezier(0.29, 0.63, 0.44, 1); } .js details[open].menu-opening > .mobile-facets__submenu { diff --git a/assets/component-localization-form.css b/assets/component-localization-form.css index 2abd1b3ff86..c47074b143f 100644 --- a/assets/component-localization-form.css +++ b/assets/component-localization-form.css @@ -218,7 +218,9 @@ } .country-filter__search-icon { - transition: opacity var(--duration-short) ease, visibility var(--duration-short) ease; + transition: + opacity var(--duration-short) ease, + visibility var(--duration-short) ease; opacity: 1; visibility: visible; pointer-events: none; diff --git a/assets/component-menu-drawer.css b/assets/component-menu-drawer.css index 319a4edb535..23bf17e1dfb 100644 --- a/assets/component-menu-drawer.css +++ b/assets/component-menu-drawer.css @@ -16,13 +16,17 @@ opacity: 0; visibility: hidden; z-index: 2; - transition: opacity 0s, visibility 0s; + transition: + opacity 0s, + visibility 0s; } menu-drawer > details[open] > summary::before { visibility: visible; opacity: 1; - transition: opacity var(--duration-default) ease, visibility var(--duration-default) ease; + transition: + opacity var(--duration-default) ease, + visibility var(--duration-default) ease; } .menu-drawer { @@ -49,7 +53,9 @@ menu-drawer > details[open] > summary::before { .js details[open] > .menu-drawer, .js details[open] > .menu-drawer__submenu { - transition: transform var(--duration-default) ease, visibility var(--duration-default) ease; + transition: + transform var(--duration-default) ease, + visibility var(--duration-default) ease; } .js details[open].menu-opening > .menu-drawer, diff --git a/assets/component-model-viewer-ui.css b/assets/component-model-viewer-ui.css index 8da5b150d20..6ed151c3394 100644 --- a/assets/component-model-viewer-ui.css +++ b/assets/component-model-viewer-ui.css @@ -27,7 +27,9 @@ background: rgb(var(--color-background)); border-color: rgba(var(--color-foreground), 0.1); transform: translate(-50%, -50%) scale(1); - transition: transform var(--duration-short) ease, color var(--duration-short) ease; + transition: + transform var(--duration-short) ease, + color var(--duration-short) ease; } .shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon { diff --git a/assets/component-newsletter.css b/assets/component-newsletter.css index 719c13fd20e..ce345bb88ef 100644 --- a/assets/component-newsletter.css +++ b/assets/component-newsletter.css @@ -52,12 +52,16 @@ } .newsletter-form__button:focus-visible { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground)); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0 0.4rem rgba(var(--color-foreground)); background-color: rgb(var(--color-background)); } .newsletter-form__button:focus { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground)); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0 0.4rem rgba(var(--color-foreground)); background-color: rgb(var(--color-background)); } diff --git a/assets/component-pickup-availability.css b/assets/component-pickup-availability.css index d99933b5cc2..893b793dcee 100644 --- a/assets/component-pickup-availability.css +++ b/assets/component-pickup-availability.css @@ -50,7 +50,9 @@ pickup-availability-drawer { top: 0; right: 0; z-index: 4; - transition: opacity var(--duration-default) ease, transform var(--duration-default) ease; + transition: + opacity var(--duration-default) ease, + transform var(--duration-default) ease; transform: translateX(100%); width: 100%; border-width: 0 0 0 var(--drawer-border-width); diff --git a/assets/component-product-variant-picker.css b/assets/component-product-variant-picker.css index b698ab80049..ef5bb3d807d 100644 --- a/assets/component-product-variant-picker.css +++ b/assets/component-product-variant-picker.css @@ -124,12 +124,16 @@ variant-selects { color: rgba(var(--color-background), 0.6); } .product-form__input--pill input[type='radio']:focus-visible + label { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0 0.5rem rgba(var(--color-foreground), 0.55); } /* Fallback */ .product-form__input--pill input[type='radio'].focused + label { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0 0.5rem rgba(var(--color-foreground), 0.55); } /* Custom styles for Swatch display type */ diff --git a/assets/component-slideshow.css b/assets/component-slideshow.css index 9c2cfb5a2b5..4081da5faeb 100644 --- a/assets/component-slideshow.css +++ b/assets/component-slideshow.css @@ -165,7 +165,9 @@ slideshow-component:not(.page-width) .slider-buttons { position: absolute; opacity: 1; transform: scale(1); - transition: transform 150ms ease, opacity 150ms ease; + transition: + transform 150ms ease, + opacity 150ms ease; width: 0.8rem; height: 1.2rem; } diff --git a/assets/component-swatch-input.css b/assets/component-swatch-input.css index f81d93883d2..f2affa9b586 100644 --- a/assets/component-swatch-input.css +++ b/assets/component-swatch-input.css @@ -33,14 +33,18 @@ /* Focus visible */ .swatch-input__input:focus-visible + .swatch-input__label { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); - box-shadow: 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0.1rem 0.5rem rgba(var(--color-foreground), 0.25); + box-shadow: + 0 0 0 0.2rem rgb(var(--color-background)), + 0 0 0.1rem 0.5rem rgba(var(--color-foreground), 0.25); } /* Active and focused */ .swatch-input__input:active:focus-visible + .swatch-input__label, .swatch-input__input:checked:focus-visible + .swatch-input__label { outline: 0.1rem solid rgb(var(--color-foreground)); - box-shadow: 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0.1rem 0.4rem rgba(var(--color-foreground), 0.25); + box-shadow: + 0 0 0 0.2rem rgb(var(--color-background)), + 0 0 0.1rem 0.4rem rgba(var(--color-foreground), 0.25); } /* Visually disabled */ diff --git a/assets/component-totals.css b/assets/component-totals.css index 97fa7f83ae3..156c05b7170 100644 --- a/assets/component-totals.css +++ b/assets/component-totals.css @@ -22,7 +22,7 @@ } .totals__total { - margin-top: .5rem; + margin-top: 0.5rem; } .totals__total-value { diff --git a/assets/details-disclosure.js b/assets/details-disclosure.js index b4680b7db8f..a83b236bb34 100644 --- a/assets/details-disclosure.js +++ b/assets/details-disclosure.js @@ -45,7 +45,7 @@ class HeaderMenu extends DetailsDisclosure { if (document.documentElement.style.getPropertyValue('--header-bottom-position-desktop') !== '') return; document.documentElement.style.setProperty( '--header-bottom-position-desktop', - `${Math.floor(this.header.getBoundingClientRect().bottom)}px` + `${Math.floor(this.header.getBoundingClientRect().bottom)}px`, ); } } diff --git a/assets/details-modal.js b/assets/details-modal.js index 4d7002db6da..873bc6b2bde 100644 --- a/assets/details-modal.js +++ b/assets/details-modal.js @@ -32,7 +32,7 @@ class DetailsModal extends HTMLElement { trapFocus( this.detailsContainer.querySelector('[tabindex="-1"]'), - this.detailsContainer.querySelector('input:not([type="hidden"])') + this.detailsContainer.querySelector('input:not([type="hidden"])'), ); } diff --git a/assets/facets.js b/assets/facets.js index 9305e5f3c69..519926ef4f3 100644 --- a/assets/facets.js +++ b/assets/facets.js @@ -35,7 +35,7 @@ class FacetFiltersForm extends HTMLElement { const countContainer = document.getElementById('ProductCount'); const countContainerDesktop = document.getElementById('ProductCountDesktop'); const loadingSpinners = document.querySelectorAll( - '.facets-container .loading__spinner, facet-filters-form .loading__spinner' + '.facets-container .loading__spinner, facet-filters-form .loading__spinner', ); loadingSpinners.forEach((spinner) => spinner.classList.remove('hidden')); document.getElementById('ProductGridContainer').querySelector('.collection').classList.add('loading'); @@ -103,7 +103,7 @@ class FacetFiltersForm extends HTMLElement { containerDesktop.classList.remove('loading'); } const loadingSpinners = document.querySelectorAll( - '.facets-container .loading__spinner, facet-filters-form .loading__spinner' + '.facets-container .loading__spinner, facet-filters-form .loading__spinner', ); loadingSpinners.forEach((spinner) => spinner.classList.add('hidden')); } @@ -111,10 +111,10 @@ class FacetFiltersForm extends HTMLElement { static renderFilters(html, event) { const parsedHTML = new DOMParser().parseFromString(html, 'text/html'); const facetDetailsElementsFromFetch = parsedHTML.querySelectorAll( - '#FacetFiltersForm .js-filter, #FacetFiltersFormMobile .js-filter, #FacetFiltersPillsForm .js-filter' + '#FacetFiltersForm .js-filter, #FacetFiltersFormMobile .js-filter, #FacetFiltersPillsForm .js-filter', ); const facetDetailsElementsFromDom = document.querySelectorAll( - '#FacetFiltersForm .js-filter, #FacetFiltersFormMobile .js-filter, #FacetFiltersPillsForm .js-filter' + '#FacetFiltersForm .js-filter, #FacetFiltersFormMobile .js-filter, #FacetFiltersPillsForm .js-filter', ); // Remove facets that are no longer returned from the server diff --git a/assets/global.js b/assets/global.js index ce13bf6514a..2d0f63f57fe 100644 --- a/assets/global.js +++ b/assets/global.js @@ -1,8 +1,8 @@ function getFocusableElements(container) { return Array.from( container.querySelectorAll( - "summary, a[href], button:enabled, [tabindex]:not([tabindex^='-']), [draggable], area, input:not([type=hidden]):enabled, select:enabled, textarea:enabled, object, iframe" - ) + "summary, a[href], button:enabled, [tabindex]:not([tabindex^='-']), [draggable], area, input:not([type=hidden]):enabled, select:enabled, textarea:enabled, object, iframe", + ), ); } @@ -177,7 +177,7 @@ function focusVisiblePolyfill() { currentFocusedElement = document.activeElement; currentFocusedElement.classList.add('focused'); }, - true + true, ); } @@ -221,7 +221,7 @@ class QuantityInput extends HTMLElement { this.changeEvent = new Event('change', { bubbles: true }); this.input.addEventListener('change', this.onInputChange.bind(this)); this.querySelectorAll('button').forEach((button) => - button.addEventListener('click', this.onButtonClick.bind(this)) + button.addEventListener('click', this.onButtonClick.bind(this)), ); } @@ -431,10 +431,10 @@ class MenuDrawer extends HTMLElement { bindEvents() { this.querySelectorAll('summary').forEach((summary) => - summary.addEventListener('click', this.onSummaryClick.bind(this)) + summary.addEventListener('click', this.onSummaryClick.bind(this)), ); this.querySelectorAll( - 'button:not(.localization-selector):not(.country-selector__close-button):not(.country-filter__reset-button)' + 'button:not(.localization-selector):not(.country-selector__close-button):not(.country-filter__reset-button)', ).forEach((button) => button.addEventListener('click', this.onCloseButtonClick.bind(this))); } @@ -565,7 +565,7 @@ class HeaderDrawer extends MenuDrawer { this.borderOffset || this.closest('.header-wrapper').classList.contains('header-wrapper--border-bottom') ? 1 : 0; document.documentElement.style.setProperty( '--header-bottom-position', - `${parseInt(this.header.getBoundingClientRect().bottom - this.borderOffset)}px` + `${parseInt(this.header.getBoundingClientRect().bottom - this.borderOffset)}px`, ); this.header.classList.add('menu-open'); @@ -590,7 +590,7 @@ class HeaderDrawer extends MenuDrawer { this.header && document.documentElement.style.setProperty( '--header-bottom-position', - `${parseInt(this.header.getBoundingClientRect().bottom - this.borderOffset)}px` + `${parseInt(this.header.getBoundingClientRect().bottom - this.borderOffset)}px`, ); document.documentElement.style.setProperty('--viewport-height', `${window.innerHeight}px`); }; @@ -667,7 +667,7 @@ class BulkModal extends HTMLElement { }; new IntersectionObserver(handleIntersection.bind(this)).observe( - document.querySelector(`#QuickBulk-${this.dataset.productId}-${this.dataset.sectionId}`) + document.querySelector(`#QuickBulk-${this.dataset.productId}-${this.dataset.sectionId}`), ); } } @@ -743,7 +743,7 @@ class SliderComponent extends HTMLElement { if (this.sliderItemsToShow.length < 2) return; this.sliderItemOffset = this.sliderItemsToShow[1].offsetLeft - this.sliderItemsToShow[0].offsetLeft; this.slidesPerPage = Math.floor( - (this.slider.clientWidth - this.sliderItemsToShow[0].offsetLeft) / this.sliderItemOffset + (this.slider.clientWidth - this.sliderItemsToShow[0].offsetLeft) / this.sliderItemOffset, ); this.totalPages = this.sliderItemsToShow.length - this.slidesPerPage + 1; this.update(); @@ -774,7 +774,7 @@ class SliderComponent extends HTMLElement { currentPage: this.currentPage, currentElement: this.sliderItemsToShow[this.currentPage - 1], }, - }) + }), ); } @@ -851,7 +851,7 @@ class SlideshowComponent extends SliderComponent { () => { this.announcementBarArrowButtonWasClicked = true; }, - { once: true } + { once: true }, ); }); } @@ -1095,7 +1095,7 @@ class VariantSelects extends HTMLElement { selectedDropdownSwatchValue.style.setProperty( '--swatch-focal-point', - target.selectedOptions[0].dataset.optionSwatchFocalPoint || 'unset' + target.selectedOptions[0].dataset.optionSwatchFocalPoint || 'unset', ); } else if (tagName === 'INPUT' && target.type === 'radio') { const selectedSwatchValue = target.closest(`.product-form__input`).querySelector('[data-selected-value]'); @@ -1109,7 +1109,7 @@ class VariantSelects extends HTMLElement { get selectedOptionValues() { return Array.from(this.querySelectorAll('select option[selected], fieldset input:checked')).map( - ({ dataset }) => dataset.optionValueId + ({ dataset }) => dataset.optionValueId, ); } } @@ -1135,7 +1135,7 @@ class ProductRecommendations extends HTMLElement { observer.unobserve(this); this.loadRecommendations(productId); }, - { rootMargin: '0px 0px 400px 0px' } + { rootMargin: '0px 0px 400px 0px' }, ); this.observer.observe(this); } diff --git a/assets/localization-form.js b/assets/localization-form.js index 3eff4e41d4b..50575dca9f0 100644 --- a/assets/localization-form.js +++ b/assets/localization-form.js @@ -53,7 +53,7 @@ if (!customElements.get('localization-form')) { onContainerKeyDown(event) { const focusableItems = Array.from(this.querySelectorAll('a')).filter( - (item) => !item.parentElement.classList.contains('hidden') + (item) => !item.parentElement.classList.contains('hidden'), ); let focusedItemIndex = focusableItems.findIndex((item) => item === document.activeElement); let itemToFocus; @@ -114,7 +114,7 @@ if (!customElements.get('localization-form')) { this.elements.panel.toggleAttribute('hidden'); this.elements.button.setAttribute( 'aria-expanded', - (this.elements.button.getAttribute('aria-expanded') === 'false').toString() + (this.elements.button.getAttribute('aria-expanded') === 'false').toString(), ); if (!document.body.classList.contains('overflow-hidden-tablet')) { document.body.classList.add('overflow-hidden-mobile'); @@ -171,7 +171,7 @@ if (!customElements.get('localization-form')) { if (this.elements.liveRegion) { this.elements.liveRegion.innerHTML = window.accessibilityStrings.countrySelectorSearchCount.replace( '[count]', - visibleCountries + visibleCountries, ); } @@ -201,6 +201,6 @@ if (!customElements.get('localization-form')) { event.preventDefault(); } } - } + }, ); } diff --git a/assets/mask-blobs.css b/assets/mask-blobs.css index a1f576523c5..e036adce916 100644 --- a/assets/mask-blobs.css +++ b/assets/mask-blobs.css @@ -1,8 +1,110 @@ :root { - --shape--blob-1: 97.686% 33.617%, 98.392% 36.152%, 98.960% 38.721%, 99.398% 41.315%, 99.712% 43.928%, 99.909% 46.552%, 99.995% 49.182%, 99.974% 51.813%, 99.852% 54.441%, 99.630% 57.063%, 99.311% 59.675%, 98.897% 62.274%, 98.389% 64.856%, 97.787% 67.417%, 97.091% 69.955%, 96.299% 72.464%, 95.411% 74.941%, 94.422% 77.379%, 93.329% 79.773%, 92.127% 82.114%, 90.812% 84.393%, 89.377% 86.598%, 87.813% 88.714%, 86.114% 90.723%, 84.272% 92.600%, 82.279% 94.317%, 80.125% 95.828%, 77.832% 97.117%, 75.423% 98.172%, 72.920% 98.983%, 70.352% 99.552%, 67.743% 99.887%, 65.115% 100.000%, 62.485% 99.907%, 59.869% 99.627%, 57.277% 99.176%, 54.717% 98.571%, 52.193% 97.825%, 49.711% 96.954%, 47.271% 95.967%, 44.877% 94.876%, 42.529% 93.689%, 40.227% 92.414%, 37.972% 91.058%, 35.764% 89.626%, 33.604% 88.123%, 31.491% 86.555%, 29.426% 84.924%, 27.410% 83.234%, 25.441% 81.487%, 23.522% 79.687%, 21.651% 77.836%, 19.832% 75.935%, 18.064% 73.986%, 16.350% 71.990%, 14.691% 69.947%, 13.090% 67.859%, 11.549% 65.726%, 10.073% 63.547%, 8.665% 61.324%, 7.331% 59.056%, 6.076% 56.744%, 4.907% 54.386%, 3.832% 51.984%, 2.861% 49.539%, 2.006% 47.050%, 1.280% 44.521%, 0.699% 41.955%, 0.280% 39.358%, 0.044% 36.738%, 0.014% 34.107%, 0.212% 31.484%, 0.660% 28.892%, 1.371% 26.359%, 2.338% 23.913%, 3.540% 21.574%, 4.951% 19.354%, 6.546% 17.261%, 8.300% 15.300%, 10.191% 13.471%, 12.199% 11.771%, 14.307% 10.197%, 16.502% 8.746%, 18.771% 7.414%, 21.104% 6.198%, 23.493% 5.094%, 25.930% 4.101%, 28.408% 3.217%, 30.922% 2.439%, 33.466% 1.768%, 36.036% 1.203%, 38.627% 0.744%, 41.235% 0.394%, 43.855% 0.152%, 46.483% 0.023%, 49.114% 0.008%, 51.744% 0.103%, 54.366% 0.315%, 56.977% 0.648%, 59.569% 1.100%, 62.137% 1.672%, 64.676% 2.363%, 67.179% 3.173%, 69.642% 4.101%, 72.056% 5.147%, 74.416% 6.310%, 76.715% 7.590%, 78.946% 8.985%, 81.102% 10.494%, 83.174% 12.115%, 85.156% 13.846%, 87.039% 15.684%, 88.815% 17.625%, 90.477% 19.664%, 92.017% 21.797%, 93.429% 24.017%, 94.707% 26.318%, 95.844% 28.690%, 96.838% 31.126%, 97.686% 33.617%; - --shape--blob-2: 85.349% 11.712%, 87.382% 13.587%, 89.228% 15.647%, 90.886% 17.862%, 92.359% 20.204%, 93.657% 22.647%, 94.795% 25.169%, 95.786% 27.752%, 96.645% 30.382%, 97.387% 33.048%, 98.025% 35.740%, 98.564% 38.454%, 99.007% 41.186%, 99.358% 43.931%, 99.622% 46.685%, 99.808% 49.446%, 99.926% 52.210%, 99.986% 54.977%, 99.999% 57.744%, 99.975% 60.511%, 99.923% 63.278%, 99.821% 66.043%, 99.671% 68.806%, 99.453% 71.565%, 99.145% 74.314%, 98.724% 77.049%, 98.164% 79.759%, 97.433% 82.427%, 96.495% 85.030%, 95.311% 87.529%, 93.841% 89.872%, 92.062% 91.988%, 89.972% 93.796%, 87.635% 95.273%, 85.135% 96.456%, 82.532% 97.393%, 79.864% 98.127%, 77.156% 98.695%, 74.424% 99.129%, 71.676% 99.452%, 68.918% 99.685%, 66.156% 99.844%, 63.390% 99.942%, 60.624% 99.990%, 57.856% 99.999%, 55.089% 99.978%, 52.323% 99.929%, 49.557% 99.847%, 46.792% 99.723%, 44.031% 99.549%, 41.273% 99.317%, 38.522% 99.017%, 35.781% 98.639%, 33.054% 98.170%, 30.347% 97.599%, 27.667% 96.911%, 25.024% 96.091%, 22.432% 95.123%, 19.907% 93.994%, 17.466% 92.690%, 15.126% 91.216%, 12.902% 89.569%, 10.808% 87.761%, 8.854% 85.803%, 7.053% 83.703%, 5.418% 81.471%, 3.962% 79.119%, 2.702% 76.656%, 1.656% 74.095%, 0.846% 71.450%, 0.294% 68.740%, 0.024% 65.987%, 0.050% 63.221%, 0.343% 60.471%, 0.858% 57.752%, 1.548% 55.073%, 2.370% 52.431%, 3.283% 49.819%, 4.253% 47.227%, 5.249% 44.646%, 6.244% 42.063%, 7.211% 39.471%, 8.124% 36.858%, 8.958% 34.220%, 9.711% 31.558%, 10.409% 28.880%, 11.083% 26.196%, 11.760% 23.513%, 12.474% 20.839%, 13.259% 18.186%, 14.156% 15.569%, 15.214% 13.012%, 16.485% 10.556%, 18.028% 8.261%, 19.883% 6.211%, 22.041% 4.484%, 24.440% 3.110%, 26.998% 2.057%, 29.651% 1.275%, 32.360% 0.714%, 35.101% 0.337%, 37.859% 0.110%, 40.624% 0.009%, 43.391% 0.016%, 46.156% 0.113%, 48.918% 0.289%, 51.674% 0.533%, 54.425% 0.837%, 57.166% 1.215%, 59.898% 1.654%, 62.618% 2.163%, 65.322% 2.750%, 68.006% 3.424%, 70.662% 4.197%, 73.284% 5.081%, 75.860% 6.091%, 78.376% 7.242%, 80.813% 8.551%, 83.148% 10.036%, 85.349% 11.712%; - --shape--blob-3: 78.621% 12.736%, 80.746% 14.354%, 82.710% 16.163%, 84.520% 18.127%, 86.187% 20.215%, 87.721% 22.401%, 89.134% 24.668%, 90.437% 27.000%, 91.639% 29.386%, 92.748% 31.816%, 93.770% 34.284%, 94.714% 36.783%, 95.583% 39.309%, 96.382% 41.858%, 97.112% 44.428%, 97.770% 47.017%, 98.353% 49.624%, 98.858% 52.248%, 99.279% 54.886%, 99.611% 57.536%, 99.847% 60.197%, 99.977% 62.865%, 99.991% 65.537%, 99.879% 68.205%, 99.626% 70.865%, 99.217% 73.504%, 98.635% 76.111%, 97.863% 78.668%, 96.879% 81.151%, 95.683% 83.538%, 94.291% 85.818%, 92.717% 87.976%, 90.974% 89.999%, 89.075% 91.878%, 87.033% 93.599%, 84.860% 95.151%, 82.567% 96.520%, 80.167% 97.692%, 77.673% 98.647%, 75.100% 99.364%, 72.469% 99.819%, 69.805% 99.997%, 67.136% 99.893%, 64.491% 99.529%, 61.884% 98.946%, 59.324% 98.186%, 56.807% 97.290%, 54.329% 96.293%, 51.880% 95.225%, 49.451% 94.114%, 47.030% 92.984%, 44.607% 91.858%, 42.173% 90.757%, 39.719% 89.701%, 37.245% 88.695%, 34.756% 87.723%, 32.263% 86.763%, 29.775% 85.790%, 27.301% 84.782%, 24.852% 83.715%, 22.441% 82.564%, 20.085% 81.306%, 17.802% 79.919%, 15.615% 78.386%, 13.549% 76.694%, 11.627% 74.839%, 9.875% 72.824%, 8.296% 70.669%, 6.878% 68.406%, 5.612% 66.054%, 4.489% 63.630%, 3.502% 61.148%, 2.645% 58.618%, 1.914% 56.049%, 1.304% 53.448%, 0.812% 50.823%, 0.437% 48.178%, 0.177% 45.519%, 0.033% 42.852%, 0.004% 40.181%, 0.091% 37.511%, 0.299% 34.847%, 0.634% 32.197%, 1.088% 29.565%, 1.657% 26.955%, 2.344% 24.374%, 3.150% 21.827%, 4.078% 19.322%, 5.133% 16.868%, 6.321% 14.475%, 7.651% 12.159%, 9.134% 9.937%, 10.780% 7.835%, 12.604% 5.883%, 14.615% 4.127%, 16.820% 2.622%, 19.214% 1.442%, 21.758% 0.633%, 24.387% 0.168%, 27.052% 0.002%, 29.721% 0.082%, 32.378% 0.357%, 35.016% 0.781%, 37.632% 1.318%, 40.231% 1.936%, 42.817% 2.607%, 45.396% 3.304%, 47.975% 4.002%, 50.561% 4.673%, 53.163% 5.278%, 55.778% 5.822%, 58.401% 6.329%, 61.027% 6.821%, 63.650% 7.326%, 66.264% 7.878%, 68.858% 8.515%, 71.418% 9.281%, 73.919% 10.217%, 76.332% 11.362%, 78.621% 12.736%; - --shape--blob-4: 80.628% 3.397%, 82.907% 4.713%, 85.051% 6.239%, 87.055% 7.945%, 88.916% 9.806%, 90.636% 11.799%, 92.213% 13.907%, 93.650% 16.112%, 94.946% 18.403%, 96.102% 20.768%, 97.115% 23.198%, 97.983% 25.683%, 98.702% 28.215%, 99.256% 30.788%, 99.652% 33.390%, 99.898% 36.011%, 99.998% 38.642%, 99.953% 41.274%, 99.765% 43.899%, 99.436% 46.511%, 98.966% 49.101%, 98.355% 51.662%, 97.602% 54.184%, 96.703% 56.658%, 95.658% 59.074%, 94.459% 61.417%, 93.104% 63.674%, 91.610% 65.841%, 89.994% 67.919%, 88.274% 69.912%, 86.469% 71.828%, 84.595% 73.677%, 82.668% 75.471%, 80.701% 77.221%, 78.709% 78.941%, 76.701% 80.644%, 74.690% 82.343%, 72.683% 84.048%, 70.680% 85.756%, 68.669% 87.455%, 66.637% 89.129%, 64.575% 90.765%, 62.468% 92.344%, 60.307% 93.847%, 58.080% 95.251%, 55.778% 96.528%, 53.396% 97.648%, 50.934% 98.576%, 48.398% 99.281%, 45.809% 99.751%, 43.186% 99.976%, 40.555% 99.967%, 37.933% 99.738%, 35.337% 99.303%, 32.781% 98.675%, 30.276% 97.865%, 27.834% 96.884%, 25.462% 95.741%, 23.171% 94.446%, 20.969% 93.004%, 18.866% 91.420%, 16.874% 89.700%, 14.991% 87.861%, 13.220% 85.913%, 11.560% 83.870%, 10.011% 81.742%, 8.574% 79.537%, 7.246% 77.263%, 6.029% 74.929%, 4.921% 72.541%, 3.923% 70.106%, 3.034% 67.628%, 2.256% 65.113%, 1.587% 62.566%, 1.033% 59.993%, 0.595% 57.397%, 0.275% 54.784%, 0.076% 52.159%, 0.001% 49.528%, 0.052% 46.896%, 0.236% 44.270%, 0.556% 41.657%, 1.019% 39.066%, 1.631% 36.506%, 2.398% 33.988%, 3.328% 31.525%, 4.412% 29.127%, 5.654% 26.806%, 7.044% 24.570%, 8.571% 22.426%, 10.224% 20.378%, 11.993% 18.429%, 13.868% 16.581%, 15.840% 14.837%, 17.900% 13.198%, 20.041% 11.666%, 22.255% 10.243%, 24.540% 8.937%, 26.891% 7.752%, 29.296% 6.680%, 31.746% 5.718%, 34.235% 4.860%, 36.755% 4.099%, 39.300% 3.427%, 41.865% 2.833%, 44.444% 2.306%, 47.035% 1.836%, 49.633% 1.412%, 52.237% 1.025%, 54.847% 0.677%, 57.463% 0.383%, 60.086% 0.162%, 62.715% 0.029%, 65.348% 0.006%, 67.978% 0.112%, 70.597% 0.372%, 73.193% 0.808%, 75.747% 1.446%, 78.234% 2.304%, 80.628% 3.397%; - --shape--blob-5: 80.452% 2.197%, 82.761% 3.507%, 84.885% 5.101%, 86.818% 6.922%, 88.568% 8.920%, 90.147% 11.056%, 91.569% 13.300%, 92.848% 15.628%, 93.997% 18.023%, 95.026% 20.472%, 95.944% 22.966%, 96.759% 25.494%, 97.476% 28.053%, 98.100% 30.635%, 98.634% 33.238%, 99.082% 35.856%, 99.444% 38.489%, 99.714% 41.132%, 99.893% 43.782%, 99.986% 46.438%, 99.992% 49.094%, 99.909% 51.750%, 99.736% 54.401%, 99.472% 57.045%, 99.113% 59.677%, 98.656% 62.294%, 98.098% 64.892%, 97.435% 67.465%, 96.663% 70.007%, 95.776% 72.511%, 94.769% 74.969%, 93.636% 77.373%, 92.372% 79.709%, 90.970% 81.966%, 89.423% 84.125%, 87.728% 86.170%, 85.898% 88.095%, 83.943% 89.894%, 81.873% 91.560%, 79.701% 93.088%, 77.435% 94.475%, 75.087% 95.718%, 72.666% 96.811%, 70.182% 97.753%, 67.645% 98.540%, 65.063% 99.165%, 62.446% 99.622%, 59.804% 99.904%, 57.150% 100.000%, 54.495% 99.900%, 51.855% 99.607%, 49.242% 99.128%, 46.668% 98.471%, 44.142% 97.651%, 41.669% 96.680%, 39.254% 95.572%, 36.900% 94.342%, 34.605% 93.002%, 32.370% 91.566%, 30.193% 90.044%, 28.067% 88.450%, 25.999% 86.782%, 23.993% 85.040%, 22.054% 83.224%, 20.182% 81.338%, 18.380% 79.387%, 16.644% 77.375%, 14.972% 75.310%, 13.360% 73.198%, 11.802% 71.046%, 10.288% 68.863%, 8.816% 66.651%, 7.404% 64.400%, 6.063% 62.107%, 4.809% 59.765%, 3.656% 57.371%, 2.624% 54.923%, 1.730% 52.421%, 0.998% 49.868%, 0.451% 47.268%, 0.112% 44.634%, 0.000% 41.980%, 0.117% 39.327%, 0.446% 36.691%, 0.976% 34.088%, 1.696% 31.531%, 2.600% 29.033%, 3.682% 26.607%, 4.941% 24.268%, 6.375% 22.032%, 7.986% 19.921%, 9.775% 17.957%, 11.743% 16.173%, 13.876% 14.591%, 16.156% 13.229%, 18.548% 12.073%, 21.017% 11.094%, 23.538% 10.255%, 26.091% 9.521%, 28.664% 8.858%, 31.248% 8.240%, 33.837% 7.642%, 36.426% 7.045%, 39.011% 6.431%, 41.589% 5.787%, 44.157% 5.109%, 46.720% 4.407%, 49.281% 3.701%, 51.846% 3.006%, 54.418% 2.339%, 57.001% 1.717%, 59.598% 1.157%, 62.212% 0.680%, 64.842% 0.309%, 67.488% 0.072%, 70.144% 0.002%, 72.797% 0.137%, 75.424% 0.521%, 77.992% 1.197%, 80.452% 2.197%; - --shape--blob-6: 71.914% 1.829%, 74.287% 2.884%, 76.559% 4.144%, 78.723% 5.581%, 80.777% 7.171%, 82.721% 8.894%, 84.557% 10.733%, 86.284% 12.673%, 87.906% 14.703%, 89.423% 16.812%, 90.838% 18.991%, 92.151% 21.233%, 93.364% 23.531%, 94.477% 25.878%, 95.492% 28.270%, 96.406% 30.702%, 97.222% 33.169%, 97.938% 35.666%, 98.555% 38.190%, 99.069% 40.737%, 99.476% 43.303%, 99.771% 45.884%, 99.948% 48.476%, 99.999% 51.073%, 99.914% 53.670%, 99.680% 56.257%, 99.287% 58.825%, 98.717% 61.360%, 97.957% 63.844%, 96.984% 66.252%, 95.807% 68.567%, 94.448% 70.781%, 92.930% 72.889%, 91.273% 74.890%, 89.499% 76.788%, 87.625% 78.587%, 85.668% 80.296%, 83.642% 81.923%, 81.560% 83.477%, 79.431% 84.967%, 77.266% 86.402%, 75.071% 87.793%, 72.854% 89.148%, 70.624% 90.481%, 68.375% 91.783%, 66.103% 93.044%, 63.803% 94.253%, 61.470% 95.396%, 59.100% 96.459%, 56.688% 97.425%, 54.232% 98.272%, 51.732% 98.978%, 49.190% 99.518%, 46.616% 99.866%, 44.022% 99.999%, 41.427% 99.904%, 38.848% 99.589%, 36.304% 99.067%, 33.806% 98.353%, 31.365% 97.465%, 28.988% 96.417%, 26.680% 95.223%, 24.446% 93.897%, 22.289% 92.450%, 20.209% 90.892%, 18.210% 89.233%, 16.286% 87.487%, 14.442% 85.656%, 12.685% 83.743%, 11.018% 81.750%, 9.446% 79.682%, 7.974% 77.541%, 6.608% 75.331%, 5.354% 73.056%, 4.218% 70.719%, 3.208% 68.325%, 2.331% 65.880%, 1.594% 63.389%, 0.996% 60.861%, 0.535% 58.304%, 0.216% 55.726%, 0.039% 53.134%, 0.005% 50.536%, 0.119% 47.941%, 0.385% 45.356%, 0.814% 42.794%, 1.416% 40.267%, 2.207% 37.793%, 3.204% 35.394%, 4.427% 33.103%, 5.887% 30.956%, 7.572% 28.979%, 9.454% 27.190%, 11.490% 25.576%, 13.637% 24.114%, 15.862% 22.773%, 18.137% 21.517%, 20.438% 20.310%, 22.744% 19.113%, 25.034% 17.885%, 27.285% 16.589%, 29.485% 15.207%, 31.628% 13.738%, 33.730% 12.210%, 35.812% 10.656%, 37.898% 9.106%, 40.011% 7.595%, 42.174% 6.156%, 44.403% 4.820%, 46.707% 3.621%, 49.090% 2.587%, 51.535% 1.709%, 54.034% 0.998%, 56.576% 0.466%, 59.152% 0.129%, 61.746% 0.001%, 64.342% 0.097%, 66.918% 0.430%, 69.450% 1.007%, 71.914% 1.829%; + --shape--blob-1: 97.686% 33.617%, 98.392% 36.152%, 98.96% 38.721%, 99.398% 41.315%, 99.712% 43.928%, 99.909% 46.552%, + 99.995% 49.182%, 99.974% 51.813%, 99.852% 54.441%, 99.63% 57.063%, 99.311% 59.675%, 98.897% 62.274%, 98.389% 64.856%, + 97.787% 67.417%, 97.091% 69.955%, 96.299% 72.464%, 95.411% 74.941%, 94.422% 77.379%, 93.329% 79.773%, + 92.127% 82.114%, 90.812% 84.393%, 89.377% 86.598%, 87.813% 88.714%, 86.114% 90.723%, 84.272% 92.6%, 82.279% 94.317%, + 80.125% 95.828%, 77.832% 97.117%, 75.423% 98.172%, 72.92% 98.983%, 70.352% 99.552%, 67.743% 99.887%, 65.115% 100%, + 62.485% 99.907%, 59.869% 99.627%, 57.277% 99.176%, 54.717% 98.571%, 52.193% 97.825%, 49.711% 96.954%, + 47.271% 95.967%, 44.877% 94.876%, 42.529% 93.689%, 40.227% 92.414%, 37.972% 91.058%, 35.764% 89.626%, + 33.604% 88.123%, 31.491% 86.555%, 29.426% 84.924%, 27.41% 83.234%, 25.441% 81.487%, 23.522% 79.687%, 21.651% 77.836%, + 19.832% 75.935%, 18.064% 73.986%, 16.35% 71.99%, 14.691% 69.947%, 13.09% 67.859%, 11.549% 65.726%, 10.073% 63.547%, + 8.665% 61.324%, 7.331% 59.056%, 6.076% 56.744%, 4.907% 54.386%, 3.832% 51.984%, 2.861% 49.539%, 2.006% 47.05%, + 1.28% 44.521%, 0.699% 41.955%, 0.28% 39.358%, 0.044% 36.738%, 0.014% 34.107%, 0.212% 31.484%, 0.66% 28.892%, + 1.371% 26.359%, 2.338% 23.913%, 3.54% 21.574%, 4.951% 19.354%, 6.546% 17.261%, 8.3% 15.3%, 10.191% 13.471%, + 12.199% 11.771%, 14.307% 10.197%, 16.502% 8.746%, 18.771% 7.414%, 21.104% 6.198%, 23.493% 5.094%, 25.93% 4.101%, + 28.408% 3.217%, 30.922% 2.439%, 33.466% 1.768%, 36.036% 1.203%, 38.627% 0.744%, 41.235% 0.394%, 43.855% 0.152%, + 46.483% 0.023%, 49.114% 0.008%, 51.744% 0.103%, 54.366% 0.315%, 56.977% 0.648%, 59.569% 1.1%, 62.137% 1.672%, + 64.676% 2.363%, 67.179% 3.173%, 69.642% 4.101%, 72.056% 5.147%, 74.416% 6.31%, 76.715% 7.59%, 78.946% 8.985%, + 81.102% 10.494%, 83.174% 12.115%, 85.156% 13.846%, 87.039% 15.684%, 88.815% 17.625%, 90.477% 19.664%, + 92.017% 21.797%, 93.429% 24.017%, 94.707% 26.318%, 95.844% 28.69%, 96.838% 31.126%, 97.686% 33.617%; + --shape--blob-2: 85.349% 11.712%, 87.382% 13.587%, 89.228% 15.647%, 90.886% 17.862%, 92.359% 20.204%, 93.657% 22.647%, + 94.795% 25.169%, 95.786% 27.752%, 96.645% 30.382%, 97.387% 33.048%, 98.025% 35.74%, 98.564% 38.454%, 99.007% 41.186%, + 99.358% 43.931%, 99.622% 46.685%, 99.808% 49.446%, 99.926% 52.21%, 99.986% 54.977%, 99.999% 57.744%, 99.975% 60.511%, + 99.923% 63.278%, 99.821% 66.043%, 99.671% 68.806%, 99.453% 71.565%, 99.145% 74.314%, 98.724% 77.049%, + 98.164% 79.759%, 97.433% 82.427%, 96.495% 85.03%, 95.311% 87.529%, 93.841% 89.872%, 92.062% 91.988%, 89.972% 93.796%, + 87.635% 95.273%, 85.135% 96.456%, 82.532% 97.393%, 79.864% 98.127%, 77.156% 98.695%, 74.424% 99.129%, + 71.676% 99.452%, 68.918% 99.685%, 66.156% 99.844%, 63.39% 99.942%, 60.624% 99.99%, 57.856% 99.999%, 55.089% 99.978%, + 52.323% 99.929%, 49.557% 99.847%, 46.792% 99.723%, 44.031% 99.549%, 41.273% 99.317%, 38.522% 99.017%, + 35.781% 98.639%, 33.054% 98.17%, 30.347% 97.599%, 27.667% 96.911%, 25.024% 96.091%, 22.432% 95.123%, 19.907% 93.994%, + 17.466% 92.69%, 15.126% 91.216%, 12.902% 89.569%, 10.808% 87.761%, 8.854% 85.803%, 7.053% 83.703%, 5.418% 81.471%, + 3.962% 79.119%, 2.702% 76.656%, 1.656% 74.095%, 0.846% 71.45%, 0.294% 68.74%, 0.024% 65.987%, 0.05% 63.221%, + 0.343% 60.471%, 0.858% 57.752%, 1.548% 55.073%, 2.37% 52.431%, 3.283% 49.819%, 4.253% 47.227%, 5.249% 44.646%, + 6.244% 42.063%, 7.211% 39.471%, 8.124% 36.858%, 8.958% 34.22%, 9.711% 31.558%, 10.409% 28.88%, 11.083% 26.196%, + 11.76% 23.513%, 12.474% 20.839%, 13.259% 18.186%, 14.156% 15.569%, 15.214% 13.012%, 16.485% 10.556%, 18.028% 8.261%, + 19.883% 6.211%, 22.041% 4.484%, 24.44% 3.11%, 26.998% 2.057%, 29.651% 1.275%, 32.36% 0.714%, 35.101% 0.337%, + 37.859% 0.11%, 40.624% 0.009%, 43.391% 0.016%, 46.156% 0.113%, 48.918% 0.289%, 51.674% 0.533%, 54.425% 0.837%, + 57.166% 1.215%, 59.898% 1.654%, 62.618% 2.163%, 65.322% 2.75%, 68.006% 3.424%, 70.662% 4.197%, 73.284% 5.081%, + 75.86% 6.091%, 78.376% 7.242%, 80.813% 8.551%, 83.148% 10.036%, 85.349% 11.712%; + --shape--blob-3: 78.621% 12.736%, 80.746% 14.354%, 82.71% 16.163%, 84.52% 18.127%, 86.187% 20.215%, 87.721% 22.401%, + 89.134% 24.668%, 90.437% 27%, 91.639% 29.386%, 92.748% 31.816%, 93.77% 34.284%, 94.714% 36.783%, 95.583% 39.309%, + 96.382% 41.858%, 97.112% 44.428%, 97.77% 47.017%, 98.353% 49.624%, 98.858% 52.248%, 99.279% 54.886%, 99.611% 57.536%, + 99.847% 60.197%, 99.977% 62.865%, 99.991% 65.537%, 99.879% 68.205%, 99.626% 70.865%, 99.217% 73.504%, + 98.635% 76.111%, 97.863% 78.668%, 96.879% 81.151%, 95.683% 83.538%, 94.291% 85.818%, 92.717% 87.976%, + 90.974% 89.999%, 89.075% 91.878%, 87.033% 93.599%, 84.86% 95.151%, 82.567% 96.52%, 80.167% 97.692%, 77.673% 98.647%, + 75.1% 99.364%, 72.469% 99.819%, 69.805% 99.997%, 67.136% 99.893%, 64.491% 99.529%, 61.884% 98.946%, 59.324% 98.186%, + 56.807% 97.29%, 54.329% 96.293%, 51.88% 95.225%, 49.451% 94.114%, 47.03% 92.984%, 44.607% 91.858%, 42.173% 90.757%, + 39.719% 89.701%, 37.245% 88.695%, 34.756% 87.723%, 32.263% 86.763%, 29.775% 85.79%, 27.301% 84.782%, 24.852% 83.715%, + 22.441% 82.564%, 20.085% 81.306%, 17.802% 79.919%, 15.615% 78.386%, 13.549% 76.694%, 11.627% 74.839%, 9.875% 72.824%, + 8.296% 70.669%, 6.878% 68.406%, 5.612% 66.054%, 4.489% 63.63%, 3.502% 61.148%, 2.645% 58.618%, 1.914% 56.049%, + 1.304% 53.448%, 0.812% 50.823%, 0.437% 48.178%, 0.177% 45.519%, 0.033% 42.852%, 0.004% 40.181%, 0.091% 37.511%, + 0.299% 34.847%, 0.634% 32.197%, 1.088% 29.565%, 1.657% 26.955%, 2.344% 24.374%, 3.15% 21.827%, 4.078% 19.322%, + 5.133% 16.868%, 6.321% 14.475%, 7.651% 12.159%, 9.134% 9.937%, 10.78% 7.835%, 12.604% 5.883%, 14.615% 4.127%, + 16.82% 2.622%, 19.214% 1.442%, 21.758% 0.633%, 24.387% 0.168%, 27.052% 0.002%, 29.721% 0.082%, 32.378% 0.357%, + 35.016% 0.781%, 37.632% 1.318%, 40.231% 1.936%, 42.817% 2.607%, 45.396% 3.304%, 47.975% 4.002%, 50.561% 4.673%, + 53.163% 5.278%, 55.778% 5.822%, 58.401% 6.329%, 61.027% 6.821%, 63.65% 7.326%, 66.264% 7.878%, 68.858% 8.515%, + 71.418% 9.281%, 73.919% 10.217%, 76.332% 11.362%, 78.621% 12.736%; + --shape--blob-4: 80.628% 3.397%, 82.907% 4.713%, 85.051% 6.239%, 87.055% 7.945%, 88.916% 9.806%, 90.636% 11.799%, + 92.213% 13.907%, 93.65% 16.112%, 94.946% 18.403%, 96.102% 20.768%, 97.115% 23.198%, 97.983% 25.683%, 98.702% 28.215%, + 99.256% 30.788%, 99.652% 33.39%, 99.898% 36.011%, 99.998% 38.642%, 99.953% 41.274%, 99.765% 43.899%, 99.436% 46.511%, + 98.966% 49.101%, 98.355% 51.662%, 97.602% 54.184%, 96.703% 56.658%, 95.658% 59.074%, 94.459% 61.417%, + 93.104% 63.674%, 91.61% 65.841%, 89.994% 67.919%, 88.274% 69.912%, 86.469% 71.828%, 84.595% 73.677%, 82.668% 75.471%, + 80.701% 77.221%, 78.709% 78.941%, 76.701% 80.644%, 74.69% 82.343%, 72.683% 84.048%, 70.68% 85.756%, 68.669% 87.455%, + 66.637% 89.129%, 64.575% 90.765%, 62.468% 92.344%, 60.307% 93.847%, 58.08% 95.251%, 55.778% 96.528%, 53.396% 97.648%, + 50.934% 98.576%, 48.398% 99.281%, 45.809% 99.751%, 43.186% 99.976%, 40.555% 99.967%, 37.933% 99.738%, + 35.337% 99.303%, 32.781% 98.675%, 30.276% 97.865%, 27.834% 96.884%, 25.462% 95.741%, 23.171% 94.446%, + 20.969% 93.004%, 18.866% 91.42%, 16.874% 89.7%, 14.991% 87.861%, 13.22% 85.913%, 11.56% 83.87%, 10.011% 81.742%, + 8.574% 79.537%, 7.246% 77.263%, 6.029% 74.929%, 4.921% 72.541%, 3.923% 70.106%, 3.034% 67.628%, 2.256% 65.113%, + 1.587% 62.566%, 1.033% 59.993%, 0.595% 57.397%, 0.275% 54.784%, 0.076% 52.159%, 0.001% 49.528%, 0.052% 46.896%, + 0.236% 44.27%, 0.556% 41.657%, 1.019% 39.066%, 1.631% 36.506%, 2.398% 33.988%, 3.328% 31.525%, 4.412% 29.127%, + 5.654% 26.806%, 7.044% 24.57%, 8.571% 22.426%, 10.224% 20.378%, 11.993% 18.429%, 13.868% 16.581%, 15.84% 14.837%, + 17.9% 13.198%, 20.041% 11.666%, 22.255% 10.243%, 24.54% 8.937%, 26.891% 7.752%, 29.296% 6.68%, 31.746% 5.718%, + 34.235% 4.86%, 36.755% 4.099%, 39.3% 3.427%, 41.865% 2.833%, 44.444% 2.306%, 47.035% 1.836%, 49.633% 1.412%, + 52.237% 1.025%, 54.847% 0.677%, 57.463% 0.383%, 60.086% 0.162%, 62.715% 0.029%, 65.348% 0.006%, 67.978% 0.112%, + 70.597% 0.372%, 73.193% 0.808%, 75.747% 1.446%, 78.234% 2.304%, 80.628% 3.397%; + --shape--blob-5: 80.452% 2.197%, 82.761% 3.507%, 84.885% 5.101%, 86.818% 6.922%, 88.568% 8.92%, 90.147% 11.056%, + 91.569% 13.3%, 92.848% 15.628%, 93.997% 18.023%, 95.026% 20.472%, 95.944% 22.966%, 96.759% 25.494%, 97.476% 28.053%, + 98.1% 30.635%, 98.634% 33.238%, 99.082% 35.856%, 99.444% 38.489%, 99.714% 41.132%, 99.893% 43.782%, 99.986% 46.438%, + 99.992% 49.094%, 99.909% 51.75%, 99.736% 54.401%, 99.472% 57.045%, 99.113% 59.677%, 98.656% 62.294%, 98.098% 64.892%, + 97.435% 67.465%, 96.663% 70.007%, 95.776% 72.511%, 94.769% 74.969%, 93.636% 77.373%, 92.372% 79.709%, 90.97% 81.966%, + 89.423% 84.125%, 87.728% 86.17%, 85.898% 88.095%, 83.943% 89.894%, 81.873% 91.56%, 79.701% 93.088%, 77.435% 94.475%, + 75.087% 95.718%, 72.666% 96.811%, 70.182% 97.753%, 67.645% 98.54%, 65.063% 99.165%, 62.446% 99.622%, 59.804% 99.904%, + 57.15% 100%, 54.495% 99.9%, 51.855% 99.607%, 49.242% 99.128%, 46.668% 98.471%, 44.142% 97.651%, 41.669% 96.68%, + 39.254% 95.572%, 36.9% 94.342%, 34.605% 93.002%, 32.37% 91.566%, 30.193% 90.044%, 28.067% 88.45%, 25.999% 86.782%, + 23.993% 85.04%, 22.054% 83.224%, 20.182% 81.338%, 18.38% 79.387%, 16.644% 77.375%, 14.972% 75.31%, 13.36% 73.198%, + 11.802% 71.046%, 10.288% 68.863%, 8.816% 66.651%, 7.404% 64.4%, 6.063% 62.107%, 4.809% 59.765%, 3.656% 57.371%, + 2.624% 54.923%, 1.73% 52.421%, 0.998% 49.868%, 0.451% 47.268%, 0.112% 44.634%, 0% 41.98%, 0.117% 39.327%, + 0.446% 36.691%, 0.976% 34.088%, 1.696% 31.531%, 2.6% 29.033%, 3.682% 26.607%, 4.941% 24.268%, 6.375% 22.032%, + 7.986% 19.921%, 9.775% 17.957%, 11.743% 16.173%, 13.876% 14.591%, 16.156% 13.229%, 18.548% 12.073%, 21.017% 11.094%, + 23.538% 10.255%, 26.091% 9.521%, 28.664% 8.858%, 31.248% 8.24%, 33.837% 7.642%, 36.426% 7.045%, 39.011% 6.431%, + 41.589% 5.787%, 44.157% 5.109%, 46.72% 4.407%, 49.281% 3.701%, 51.846% 3.006%, 54.418% 2.339%, 57.001% 1.717%, + 59.598% 1.157%, 62.212% 0.68%, 64.842% 0.309%, 67.488% 0.072%, 70.144% 0.002%, 72.797% 0.137%, 75.424% 0.521%, + 77.992% 1.197%, 80.452% 2.197%; + --shape--blob-6: 71.914% 1.829%, 74.287% 2.884%, 76.559% 4.144%, 78.723% 5.581%, 80.777% 7.171%, 82.721% 8.894%, + 84.557% 10.733%, 86.284% 12.673%, 87.906% 14.703%, 89.423% 16.812%, 90.838% 18.991%, 92.151% 21.233%, + 93.364% 23.531%, 94.477% 25.878%, 95.492% 28.27%, 96.406% 30.702%, 97.222% 33.169%, 97.938% 35.666%, 98.555% 38.19%, + 99.069% 40.737%, 99.476% 43.303%, 99.771% 45.884%, 99.948% 48.476%, 99.999% 51.073%, 99.914% 53.67%, 99.68% 56.257%, + 99.287% 58.825%, 98.717% 61.36%, 97.957% 63.844%, 96.984% 66.252%, 95.807% 68.567%, 94.448% 70.781%, 92.93% 72.889%, + 91.273% 74.89%, 89.499% 76.788%, 87.625% 78.587%, 85.668% 80.296%, 83.642% 81.923%, 81.56% 83.477%, 79.431% 84.967%, + 77.266% 86.402%, 75.071% 87.793%, 72.854% 89.148%, 70.624% 90.481%, 68.375% 91.783%, 66.103% 93.044%, + 63.803% 94.253%, 61.47% 95.396%, 59.1% 96.459%, 56.688% 97.425%, 54.232% 98.272%, 51.732% 98.978%, 49.19% 99.518%, + 46.616% 99.866%, 44.022% 99.999%, 41.427% 99.904%, 38.848% 99.589%, 36.304% 99.067%, 33.806% 98.353%, + 31.365% 97.465%, 28.988% 96.417%, 26.68% 95.223%, 24.446% 93.897%, 22.289% 92.45%, 20.209% 90.892%, 18.21% 89.233%, + 16.286% 87.487%, 14.442% 85.656%, 12.685% 83.743%, 11.018% 81.75%, 9.446% 79.682%, 7.974% 77.541%, 6.608% 75.331%, + 5.354% 73.056%, 4.218% 70.719%, 3.208% 68.325%, 2.331% 65.88%, 1.594% 63.389%, 0.996% 60.861%, 0.535% 58.304%, + 0.216% 55.726%, 0.039% 53.134%, 0.005% 50.536%, 0.119% 47.941%, 0.385% 45.356%, 0.814% 42.794%, 1.416% 40.267%, + 2.207% 37.793%, 3.204% 35.394%, 4.427% 33.103%, 5.887% 30.956%, 7.572% 28.979%, 9.454% 27.19%, 11.49% 25.576%, + 13.637% 24.114%, 15.862% 22.773%, 18.137% 21.517%, 20.438% 20.31%, 22.744% 19.113%, 25.034% 17.885%, 27.285% 16.589%, + 29.485% 15.207%, 31.628% 13.738%, 33.73% 12.21%, 35.812% 10.656%, 37.898% 9.106%, 40.011% 7.595%, 42.174% 6.156%, + 44.403% 4.82%, 46.707% 3.621%, 49.09% 2.587%, 51.535% 1.709%, 54.034% 0.998%, 56.576% 0.466%, 59.152% 0.129%, + 61.746% 0.001%, 64.342% 0.097%, 66.918% 0.43%, 69.45% 1.007%, 71.914% 1.829%; } diff --git a/assets/media-gallery.js b/assets/media-gallery.js index c59cd4910ce..772e2c8725c 100644 --- a/assets/media-gallery.js +++ b/assets/media-gallery.js @@ -23,7 +23,7 @@ if (!customElements.get('media-gallery')) { onSlideChanged(event) { const thumbnail = this.elements.thumbnails.querySelector( - `[data-target="${event.detail.currentElement.dataset.mediaId}"]` + `[data-target="${event.detail.currentElement.dataset.mediaId}"]`, ); this.setActiveThumbnail(thumbnail); } @@ -45,7 +45,8 @@ if (!customElements.get('media-gallery')) { if (this.elements.thumbnails) { const activeThumbnail = this.elements.thumbnails.querySelector(`[data-target="${mediaId}"]`); - activeThumbnail.parentElement.firstChild !== activeThumbnail && activeThumbnail.parentElement.prepend(activeThumbnail); + activeThumbnail.parentElement.firstChild !== activeThumbnail && + activeThumbnail.parentElement.prepend(activeThumbnail); } if (this.elements.viewer.slider) this.elements.viewer.resetPages(); @@ -112,6 +113,6 @@ if (!customElements.get('media-gallery')) { this.elements.viewer.slider.setAttribute('role', 'presentation'); this.elements.viewer.sliderItems.forEach((slide) => slide.setAttribute('role', 'presentation')); } - } + }, ); } diff --git a/assets/pickup-availability.js b/assets/pickup-availability.js index 1b5ebd63579..3f3914fdf58 100644 --- a/assets/pickup-availability.js +++ b/assets/pickup-availability.js @@ -80,7 +80,7 @@ if (!customElements.get('pickup-availability')) { document.querySelector('pickup-availability-drawer').show(evt.target); }); } - } + }, ); } @@ -127,6 +127,6 @@ if (!customElements.get('pickup-availability-drawer')) { document.body.classList.add('overflow-hidden'); trapFocus(this); } - } + }, ); } diff --git a/assets/predictive-search.js b/assets/predictive-search.js index b30210be21c..e7c4c43020b 100644 --- a/assets/predictive-search.js +++ b/assets/predictive-search.js @@ -127,7 +127,7 @@ class PredictiveSearch extends SearchForm { // Filter out hidden elements (duplicated page and article resources) thanks // to this https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetParent const allVisibleElements = Array.from(this.querySelectorAll('li, button.predictive-search__item')).filter( - (element) => element.offsetParent !== null + (element) => element.offsetParent !== null, ); let activeElementIndex = 0; diff --git a/assets/price-per-item.js b/assets/price-per-item.js index fdf37eb9700..9d011b12c96 100644 --- a/assets/price-per-item.js +++ b/assets/price-per-item.js @@ -62,27 +62,38 @@ if (!customElements.get('price-per-item')) { updatePricePerItem(updatedCartQuantity) { if (this.input) { this.enteredQty = parseInt(this.input.value); - this.step = parseInt(this.input.step) + this.step = parseInt(this.input.step); } // updatedCartQuantity is undefined when qty is updated on product page. We need to sum entered qty and current qty in cart. // updatedCartQuantity is not undefined when qty is updated in cart. We need to sum qty in cart and min qty for product. - this.currentQtyForVolumePricing = updatedCartQuantity === undefined ? this.getCartQuantity(updatedCartQuantity) + this.enteredQty : this.getCartQuantity(updatedCartQuantity) + parseInt(this.step); + this.currentQtyForVolumePricing = + updatedCartQuantity === undefined + ? this.getCartQuantity(updatedCartQuantity) + this.enteredQty + : this.getCartQuantity(updatedCartQuantity) + parseInt(this.step); if (this.classList.contains('variant-item__price-per-item')) { this.currentQtyForVolumePricing = this.getCartQuantity(updatedCartQuantity); } for (let pair of this.qtyPricePairs) { if (this.currentQtyForVolumePricing >= pair[0]) { - const pricePerItemCurrent = document.querySelector(`price-per-item[id^="Price-Per-Item-${this.dataset.sectionId || this.dataset.variantId}"] .price-per-item span`); - this.classList.contains('variant-item__price-per-item') ? pricePerItemCurrent.innerHTML = window.quickOrderListStrings.each.replace('[money]', pair[1]) : pricePerItemCurrent.innerHTML = pair[1]; + const pricePerItemCurrent = document.querySelector( + `price-per-item[id^="Price-Per-Item-${ + this.dataset.sectionId || this.dataset.variantId + }"] .price-per-item span`, + ); + this.classList.contains('variant-item__price-per-item') + ? (pricePerItemCurrent.innerHTML = window.quickOrderListStrings.each.replace('[money]', pair[1])) + : (pricePerItemCurrent.innerHTML = pair[1]); break; } } } getCartQuantity(updatedCartQuantity) { - return (updatedCartQuantity || updatedCartQuantity === 0) ? updatedCartQuantity : parseInt(this.input.dataset.cartQuantity); + return updatedCartQuantity || updatedCartQuantity === 0 + ? updatedCartQuantity + : parseInt(this.input.dataset.cartQuantity); } getVolumePricingArray() { @@ -90,14 +101,14 @@ if (!customElements.get('price-per-item')) { this.qtyPricePairs = []; if (volumePricing) { - volumePricing.querySelectorAll('li').forEach(li => { + volumePricing.querySelectorAll('li').forEach((li) => { const qty = parseInt(li.querySelector('span:first-child').textContent); - const price = (li.querySelector('span:not(:first-child):last-child').dataset.text); + const price = li.querySelector('span:not(:first-child):last-child').dataset.text; this.qtyPricePairs.push([qty, price]); }); } this.qtyPricePairs.reverse(); } - } + }, ); } diff --git a/assets/product-form.js b/assets/product-form.js index 59c19c9ec36..823b053e136 100644 --- a/assets/product-form.js +++ b/assets/product-form.js @@ -35,7 +35,7 @@ if (!customElements.get('product-form')) { if (this.cart) { formData.append( 'sections', - this.cart.getSectionsToRender().map((section) => section.id) + this.cart.getSectionsToRender().map((section) => section.id), ); formData.append('sections_url', window.location.pathname); this.cart.setActiveElement(document.activeElement); @@ -82,7 +82,7 @@ if (!customElements.get('product-form')) { this.cart.renderContents(response); }); }, - { once: true } + { once: true }, ); quickAddModal.hide(true); } else { @@ -128,6 +128,6 @@ if (!customElements.get('product-form')) { get variantIdInput() { return this.form.querySelector('[name=id]'); } - } + }, ); } diff --git a/assets/product-info.js b/assets/product-info.js index 5c362e35c12..3a33047f3e1 100644 --- a/assets/product-info.js +++ b/assets/product-info.js @@ -22,7 +22,7 @@ if (!customElements.get('product-info')) { this.onVariantChangeUnsubscriber = subscribe( PUB_SUB_EVENTS.optionValueSelectionChange, - this.handleOptionValueChange.bind(this) + this.handleOptionValueChange.bind(this), ); this.initQuantityHandlers(); @@ -52,7 +52,9 @@ if (!customElements.get('product-info')) { initializeProductSwapUtility() { this.preProcessHtmlCallbacks.push((html) => - html.querySelectorAll('.scroll-trigger').forEach((element) => element.classList.add('scroll-trigger--cancel')) + html + .querySelectorAll('.scroll-trigger') + .forEach((element) => element.classList.add('scroll-trigger--cancel')), ); this.postProcessHtmlCallbacks.push((newNode) => { window?.Shopify?.PaymentButton?.init(); @@ -100,14 +102,14 @@ if (!customElements.get('product-info')) { document.querySelector('main'), html.querySelector('main'), this.preProcessHtmlCallbacks, - this.postProcessHtmlCallbacks + this.postProcessHtmlCallbacks, ); } else { HTMLUpdateUtility.viewTransition( this, html.querySelector('product-info'), this.preProcessHtmlCallbacks, - this.postProcessHtmlCallbacks + this.postProcessHtmlCallbacks, ); } }; @@ -122,6 +124,10 @@ if (!customElements.get('product-info')) { .then((responseText) => { this.pendingRequestUrl = null; const html = new DOMParser().parseFromString(responseText, 'text/html'); + + const sku = document.getElementById(`sku-${this.dataset.section}`); + if (sku) sku.classList.remove('visibility-hidden'), this.updateSku(html); + callback(html); }) .then(() => { @@ -137,6 +143,14 @@ if (!customElements.get('product-info')) { }); } + updateSku(html) { + const id = `sku-${this.dataset.section}`; + const destination = document.getElementById(id); + const source = html.getElementById(id); + + if (source && destination) destination.innerHTML = source.innerHTML; + } + getSelectedVariant(productInfoNode) { const selectedVariant = productInfoNode.querySelector('variant-selects [data-selected-variant]')?.innerHTML; return !!selectedVariant ? JSON.parse(selectedVariant) : null; @@ -198,7 +212,7 @@ if (!customElements.get('product-info')) { this.productForm?.toggleSubmitButton( html.getElementById(`ProductSubmitButton-${this.sectionId}`)?.hasAttribute('disabled') ?? true, - window.variantStrings.soldOut + window.variantStrings.soldOut, ); publish(PUB_SUB_EVENTS.variantChange, { @@ -213,7 +227,7 @@ if (!customElements.get('product-info')) { updateVariantInputs(variantId) { this.querySelectorAll( - `#product-form-${this.dataset.section}, #product-form-installment-${this.dataset.section}` + `#product-form-${this.dataset.section}, #product-form-installment-${this.dataset.section}`, ).forEach((productForm) => { const input = productForm.querySelector('input[name="id"]'); input.value = variantId ?? ''; @@ -223,7 +237,7 @@ if (!customElements.get('product-info')) { updateURL(url, variantId) { this.querySelector('share-button')?.updateUrl( - `${window.shopUrl}${url}${variantId ? `?variant=${variantId}` : ''}` + `${window.shopUrl}${url}${variantId ? `?variant=${variantId}` : ''}`, ); if (this.dataset.updateUrl === 'false') return; @@ -250,7 +264,7 @@ if (!customElements.get('product-info')) { const mediaGallerySourceItems = Array.from(mediaGallerySource.querySelectorAll('li[data-media-id]')); const sourceSet = new Set(mediaGallerySourceItems.map((item) => item.dataset.mediaId)); const sourceMap = new Map( - mediaGallerySourceItems.map((item, index) => [item.dataset.mediaId, { item, index }]) + mediaGallerySourceItems.map((item, index) => [item.dataset.mediaId, { item, index }]), ); return [mediaGallerySourceItems, sourceSet, sourceMap]; }; @@ -258,7 +272,7 @@ if (!customElements.get('product-info')) { if (mediaGallerySource && mediaGalleryDestination) { let [mediaGallerySourceItems, sourceSet, sourceMap] = refreshSourceData(); const mediaGalleryDestinationItems = Array.from( - mediaGalleryDestination.querySelectorAll('li[data-media-id]') + mediaGalleryDestination.querySelectorAll('li[data-media-id]'), ); const destinationSet = new Set(mediaGalleryDestinationItems.map(({ dataset }) => dataset.mediaId)); let shouldRefresh = false; @@ -289,7 +303,7 @@ if (!customElements.get('product-info')) { if (sourceData && sourceData.index !== destinationIndex) { mediaGallerySource.insertBefore( sourceData.item, - mediaGallerySource.querySelector(`li:nth-of-type(${destinationIndex + 1})`) + mediaGallerySource.querySelector(`li:nth-of-type(${destinationIndex + 1})`), ); // refresh source now that it has been modified @@ -301,7 +315,7 @@ if (!customElements.get('product-info')) { // set featured media as active in the media gallery this.querySelector(`media-gallery`)?.setActiveMedia?.( `${this.dataset.section}-${variantFeaturedMediaId}`, - true + true, ); // update media modal @@ -395,7 +409,7 @@ if (!customElements.get('product-info')) { get relatedProducts() { const relatedProductsSectionId = SectionId.getIdForSection( SectionId.parseId(this.sectionId), - 'related-products' + 'related-products', ); return document.querySelector(`product-recommendations[data-section-id^="${relatedProductsSectionId}"]`); } @@ -403,7 +417,7 @@ if (!customElements.get('product-info')) { get quickOrderList() { const quickOrderListSectionId = SectionId.getIdForSection( SectionId.parseId(this.sectionId), - 'quick_order_list' + 'quick_order_list', ); return document.querySelector(`quick-order-list[data-id^="${quickOrderListSectionId}"]`); } @@ -411,6 +425,6 @@ if (!customElements.get('product-info')) { get sectionId() { return this.dataset.originalSection || this.dataset.section; } - } + }, ); } diff --git a/assets/product-modal.js b/assets/product-modal.js index b35c7f468b8..b4aaec8842b 100644 --- a/assets/product-modal.js +++ b/assets/product-modal.js @@ -17,7 +17,7 @@ if (!customElements.get('product-modal')) { showActiveMedia() { this.querySelectorAll( - `[data-media-id]:not([data-media-id="${this.openedBy.getAttribute('data-media-id')}"])` + `[data-media-id]:not([data-media-id="${this.openedBy.getAttribute('data-media-id')}"])`, ).forEach((element) => { element.classList.remove('active'); }); @@ -37,6 +37,6 @@ if (!customElements.get('product-modal')) { ) activeMedia.loadContent(); } - } + }, ); } diff --git a/assets/product-model.js b/assets/product-model.js index db28d081aba..a0a2b09db6f 100644 --- a/assets/product-model.js +++ b/assets/product-model.js @@ -23,7 +23,7 @@ if (!customElements.get('product-model')) { this.modelViewerUI = new Shopify.ModelViewerUI(this.querySelector('model-viewer')); } - } + }, ); } diff --git a/assets/quantity-popover.js b/assets/quantity-popover.js index af45660bbfa..0c31915d1dc 100644 --- a/assets/quantity-popover.js +++ b/assets/quantity-popover.js @@ -84,6 +84,6 @@ if (!customElements.get('quantity-popover')) { this.eventMouseEnterHappened = false; } - } + }, ); } diff --git a/assets/quick-add-bulk.js b/assets/quick-add-bulk.js index f9195e2f087..19cd66ed267 100644 --- a/assets/quick-add-bulk.js +++ b/assets/quick-add-bulk.js @@ -75,7 +75,7 @@ if (!customElements.get('quick-add-bulk')) { () => { event.target.setCustomValidity(''); }, - { once: true } + { once: true }, ); } @@ -86,7 +86,7 @@ if (!customElements.get('quick-add-bulk')) { .then((responseText) => { const html = new DOMParser().parseFromString(responseText, 'text/html'); const sourceQty = html.querySelector( - `#quick-add-bulk-${this.dataset.id}-${this.closest('.collection').dataset.id}` + `#quick-add-bulk-${this.dataset.id}-${this.closest('.collection').dataset.id}`, ); if (sourceQty) { this.innerHTML = sourceQty.innerHTML; @@ -179,7 +179,7 @@ if (!customElements.get('quick-add-bulk')) { if (elementToReplace) { elementToReplace.innerHTML = this.getSectionInnerHTML( parsedState.sections[section.section], - section.selector + section.selector, ); } }); @@ -191,6 +191,6 @@ if (!customElements.get('quick-add-bulk')) { this.listenForActiveInput(); this.listenForKeydown(); } - } + }, ); } diff --git a/assets/quick-add.js b/assets/quick-add.js index 5125a974c2f..a70c43ded9a 100644 --- a/assets/quick-add.js +++ b/assets/quick-add.js @@ -117,6 +117,6 @@ if (!customElements.get('quick-add-modal')) { mediaImages.forEach((img) => img.setAttribute('sizes', mediaImageSizes)); } - } + }, ); } diff --git a/assets/quick-order-list.css b/assets/quick-order-list.css index bcd6726884f..53b00570982 100644 --- a/assets/quick-order-list.css +++ b/assets/quick-order-list.css @@ -310,7 +310,7 @@ quick-order-list-remove-button .icon-remove { top: 1.2rem; } - .variant-remove-total--empty .loading__spinner { + .variant-remove-total--empty .loading__spinner { top: -1rem; } } @@ -491,6 +491,10 @@ quick-order-list-remove-button:hover .icon-remove { padding-top: 0; } + .quick-order-list__table .desktop-row-error td { + padding-top: 0; + } + .quick-order-list__table .variant-item--unit-price td { vertical-align: middle; } diff --git a/assets/quick-order-list.js b/assets/quick-order-list.js index d4a77ffac57..8b4962252b6 100644 --- a/assets/quick-order-list.js +++ b/assets/quick-order-list.js @@ -9,7 +9,7 @@ if (!customElements.get('quick-order-list-remove-button')) { this.startQueue(this.dataset.index, 0); }); } - } + }, ); } @@ -61,7 +61,7 @@ if (!customElements.get('quick-order-list-remove-all-button')) { .classList.toggle('hidden', showConfirmation); this.quickOrderList.querySelector('.quick-order-list-total__info').classList.toggle('hidden', showInfo); } - } + }, ); } @@ -262,13 +262,13 @@ if (!customElements.get('quick-order-list')) { this.ids.flat().forEach((i) => { elementToReplace.querySelector(`#Variant-${i}`).innerHTML = this.getSectionInnerHTML( parsedState.sections[section.section], - `#Variant-${i}` + `#Variant-${i}`, ); }); } else { elementToReplace.innerHTML = this.getSectionInnerHTML( parsedState.sections[section.section], - section.selector + section.selector, ); } } @@ -432,8 +432,8 @@ if (!customElements.get('quick-order-list')) { ? window.quickOrderListStrings.itemRemoved : window.quickOrderListStrings.itemsRemoved : quantity === 1 - ? window.quickOrderListStrings.itemAdded - : window.quickOrderListStrings.itemsAdded; + ? window.quickOrderListStrings.itemAdded + : window.quickOrderListStrings.itemsAdded; messages.forEach((msg) => (msg.innerHTML = textTemplate.replace('[quantity]', absQuantity))); @@ -490,6 +490,6 @@ if (!customElements.get('quick-order-list')) { quickOrderListItems.forEach((overlay) => overlay.classList.add('hidden')); } } - } + }, ); } diff --git a/assets/recipient-form.js b/assets/recipient-form.js index 71eb7a33a82..cf18e6e6d93 100644 --- a/assets/recipient-form.js +++ b/assets/recipient-form.js @@ -160,6 +160,6 @@ if (!customElements.get('recipient-form')) { this.clearErrorMessage(); } } - } + }, ); } diff --git a/assets/search-form.js b/assets/search-form.js index f95e8b79cd7..1ed2abb2677 100644 --- a/assets/search-form.js +++ b/assets/search-form.js @@ -10,7 +10,7 @@ class SearchForm extends HTMLElement { 'input', debounce((event) => { this.onChange(event); - }, 300).bind(this) + }, 300).bind(this), ); } } diff --git a/assets/section-email-signup-banner.css b/assets/section-email-signup-banner.css index c6db657bee4..ceecebd8162 100644 --- a/assets/section-email-signup-banner.css +++ b/assets/section-email-signup-banner.css @@ -57,7 +57,9 @@ .banner--desktop-transparent .email-signup-banner__box--no-image .field__button:focus-visible { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } } diff --git a/assets/section-main-product.css b/assets/section-main-product.css index d50877fc836..51dbd308d86 100644 --- a/assets/section-main-product.css +++ b/assets/section-main-product.css @@ -99,8 +99,10 @@ product-info { .shopify-payment-button__button [role='button'].focused { outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important; outline-offset: 0.3rem; - box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)), - 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important; + box-shadow: + 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)), + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important; } .shopify-payment-button__button [role='button']:focus:not(:focus-visible) { @@ -110,8 +112,10 @@ product-info { .shopify-payment-button__button [role='button']:focus-visible { outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important; - box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)), - 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important; + box-shadow: + 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)), + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important; } .shopify-payment-button__button--unbranded { @@ -185,6 +189,10 @@ product-info { max-width: 100%; } +.product-form__input .svg-wrapper { + right: 1.5rem; +} + .product-form__submit { margin-bottom: 1rem; } @@ -473,7 +481,9 @@ a.product__text { left: 1.2rem; top: 1.2rem; z-index: 1; - transition: color var(--duration-short) ease, opacity var(--duration-short) ease; + transition: + color var(--duration-short) ease, + opacity var(--duration-short) ease; } .product__media-video .product__media-icon { @@ -590,12 +600,16 @@ a.product__text { } .product__media-toggle:focus-visible:after { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); border-radius: var(--media-radius); } .product__media-toggle.focused:after { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); border-radius: var(--media-radius); } @@ -791,13 +805,17 @@ a.product__text { } .product-popup-modal__content.focused { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3), + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3), var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity)); } .product-popup-modal__content:focus-visible { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3), + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3), var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity)); } @@ -1083,13 +1101,17 @@ a.product__text { } .thumbnail[aria-current]:focus-visible { - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); } .thumbnail[aria-current]:focus, .thumbnail.focused { outline: 0; - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5); } /* outline styling for Windows High Contrast Mode */ @@ -1205,7 +1227,7 @@ a.product__text { } .product__inventory .icon-inventory-status circle:first-of-type { - opacity: .3; + opacity: 0.3; } /* Icon with text */ diff --git a/assets/share.js b/assets/share.js index 953c46ef4ed..7f8add3072f 100644 --- a/assets/share.js +++ b/assets/share.js @@ -51,6 +51,6 @@ if (!customElements.get('share-button')) { this.urlToShare = url; this.elements.urlInput.value = url; } - } + }, ); } diff --git a/assets/show-more.js b/assets/show-more.js index a67b400f26b..d873d547e93 100644 --- a/assets/show-more.js +++ b/assets/show-more.js @@ -8,7 +8,11 @@ if (!customElements.get('show-more-button')) { button.addEventListener('click', (event) => { this.expandShowMore(event); const nextElementToFocus = event.target.closest('.parent-display').querySelector('.show-more-item'); - if (nextElementToFocus && !nextElementToFocus.classList.contains('hidden') && nextElementToFocus.querySelector('input')) { + if ( + nextElementToFocus && + !nextElementToFocus.classList.contains('hidden') && + nextElementToFocus.querySelector('input') + ) { nextElementToFocus.querySelector('input').focus(); } }); @@ -22,6 +26,6 @@ if (!customElements.get('show-more-button')) { this.classList.add('hidden'); } } - } + }, ); } diff --git a/assets/template-giftcard.css b/assets/template-giftcard.css index 958db6cb089..9b63103cb8e 100644 --- a/assets/template-giftcard.css +++ b/assets/template-giftcard.css @@ -264,33 +264,45 @@ h2, *:focus-visible { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 0.3rem; - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } /* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */ .focused { outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 0.3rem; - box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); + box-shadow: + 0 0 0 0.3rem rgb(var(--color-background)), + 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .button:focus-visible { - box-shadow: 0 0 0 0.1rem rgb(var(--color-button)), 0 0 0 0.3rem rgb(var(--color-background)), + box-shadow: + 0 0 0 0.1rem rgb(var(--color-button)), + 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .button:focus { - box-shadow: 0 0 0 0.1rem rgb(var(--color-button)), 0 0 0 0.3rem rgb(var(--color-background)), + box-shadow: + 0 0 0 0.1rem rgb(var(--color-button)), + 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .button--secondary:focus-visible { - box-shadow: 0 0 0 0.1rem rgb(var(--color-secondary-button-label)), 0 0 0 0.3rem rgb(var(--color-background)), + box-shadow: + 0 0 0 0.1rem rgb(var(--color-secondary-button-label)), + 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } .button--secondary:focus { - box-shadow: 0 0 0 0.1rem rgb(var(--color-secondary-button-label)), 0 0 0 0.3rem rgb(var(--color-background)), + box-shadow: + 0 0 0 0.1rem rgb(var(--color-secondary-button-label)), + 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); } diff --git a/config/settings_data.json b/config/settings_data.json index 0f7a06db992..d41f4806af3 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -1,5 +1,228 @@ { - "current": "Default", + "current": { + "logo": "shopify://shop_images/logo_2048_x_1152_1_6c488fbe-6cdb-4948-8e1e-d10805c6738b.png", + "logo_width": 230, + "favicon": "shopify://shop_images/Ideogramma___Ufficiale.png", + "type_header_font": "roboto_n4", + "heading_scale": 100, + "type_body_font": "roboto_n4", + "body_scale": 100, + "page_width": 1400, + "spacing_sections": 0, + "spacing_grid_horizontal": 20, + "spacing_grid_vertical": 8, + "animations_reveal_on_scroll": false, + "animations_hover_elements": "default", + "buttons_border_thickness": 1, + "buttons_border_opacity": 100, + "buttons_radius": 6, + "buttons_shadow_opacity": 0, + "buttons_shadow_horizontal_offset": 0, + "buttons_shadow_vertical_offset": 4, + "buttons_shadow_blur": 5, + "variant_pills_border_thickness": 1, + "variant_pills_border_opacity": 100, + "variant_pills_radius": 6, + "variant_pills_shadow_opacity": 0, + "variant_pills_shadow_horizontal_offset": 0, + "variant_pills_shadow_vertical_offset": 4, + "variant_pills_shadow_blur": 5, + "inputs_border_thickness": 1, + "inputs_border_opacity": 100, + "inputs_radius": 6, + "inputs_shadow_opacity": 0, + "inputs_shadow_horizontal_offset": 0, + "inputs_shadow_vertical_offset": 4, + "inputs_shadow_blur": 5, + "card_style": "card", + "card_image_padding": 0, + "card_text_alignment": "left", + "card_color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "card_border_thickness": 0, + "card_border_opacity": 10, + "card_corner_radius": 2, + "card_shadow_opacity": 0, + "card_shadow_horizontal_offset": 0, + "card_shadow_vertical_offset": 4, + "card_shadow_blur": 5, + "collection_card_style": "standard", + "collection_card_image_padding": 0, + "collection_card_text_alignment": "left", + "collection_card_color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "collection_card_border_thickness": 0, + "collection_card_border_opacity": 10, + "collection_card_corner_radius": 0, + "collection_card_shadow_opacity": 0, + "collection_card_shadow_horizontal_offset": 0, + "collection_card_shadow_vertical_offset": 4, + "collection_card_shadow_blur": 5, + "blog_card_style": "standard", + "blog_card_image_padding": 0, + "blog_card_text_alignment": "left", + "blog_card_color_scheme": "scheme-2", + "blog_card_border_thickness": 0, + "blog_card_border_opacity": 10, + "blog_card_corner_radius": 0, + "blog_card_shadow_opacity": 0, + "blog_card_shadow_horizontal_offset": 0, + "blog_card_shadow_vertical_offset": 4, + "blog_card_shadow_blur": 5, + "text_boxes_border_thickness": 0, + "text_boxes_border_opacity": 10, + "text_boxes_radius": 0, + "text_boxes_shadow_opacity": 0, + "text_boxes_shadow_horizontal_offset": 0, + "text_boxes_shadow_vertical_offset": 4, + "text_boxes_shadow_blur": 5, + "media_border_thickness": 1, + "media_border_opacity": 5, + "media_radius": 0, + "media_shadow_opacity": 0, + "media_shadow_horizontal_offset": 0, + "media_shadow_vertical_offset": 4, + "media_shadow_blur": 5, + "popup_border_thickness": 1, + "popup_border_opacity": 10, + "popup_corner_radius": 0, + "popup_shadow_opacity": 5, + "popup_shadow_horizontal_offset": 0, + "popup_shadow_vertical_offset": 4, + "popup_shadow_blur": 5, + "drawer_border_thickness": 1, + "drawer_border_opacity": 10, + "drawer_shadow_opacity": 0, + "drawer_shadow_horizontal_offset": 0, + "drawer_shadow_vertical_offset": 4, + "drawer_shadow_blur": 5, + "badge_position": "top right", + "badge_corner_radius": 40, + "sale_badge_color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "sold_out_badge_color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "brand_headline": "Lo stile che dà forma alle tue idee", + "brand_description": "", + "brand_image": "shopify://shop_images/logo_2048_x_1152_1_6c488fbe-6cdb-4948-8e1e-d10805c6738b.png", + "brand_image_width": 190, + "social_facebook_link": "https://www.facebook.com/unicoemultiplo/", + "social_instagram_link": "https://www.instagram.com/unicoemultiplo/", + "social_youtube_link": "https://www.youtube.com/@Unicoemultiplo", + "social_tiktok_link": "", + "social_twitter_link": "", + "social_snapchat_link": "", + "social_pinterest_link": "https://mx.pinterest.com/unicoemultiplo/", + "social_tumblr_link": "", + "social_vimeo_link": "", + "predictive_search_enabled": true, + "predictive_search_show_vendor": false, + "predictive_search_show_price": false, + "currency_code_enabled": true, + "cart_type": "drawer", + "show_vendor": true, + "show_cart_note": false, + "cart_drawer_collection": "", + "cart_color_scheme": "scheme-1", + "sections": { + "main-password-header": { "type": "main-password-header", "settings": { "color_scheme": "scheme-1" } }, + "main-password-footer": { "type": "main-password-footer", "settings": { "color_scheme": "scheme-1" } } + }, + "content_for_index": [], + "blocks": { + "16963237191767492405": { + "type": "shopify://apps/whatsapp-button/blocks/app-embed-block/96d80a63-e860-4262-a001-8b82ac4d00e6", + "disabled": false, + "settings": {} + } + }, + "color_schemes": { + "scheme-1": { + "settings": { + "background": "#ffffff", + "background_gradient": "", + "text": "#121212", + "button": "#121212", + "button_label": "#ffffff", + "secondary_button_label": "#121212", + "shadow": "#121212" + } + }, + "scheme-2": { + "settings": { + "background": "#f3f3f3", + "background_gradient": "", + "text": "#121212", + "button": "#121212", + "button_label": "#f3f3f3", + "secondary_button_label": "#121212", + "shadow": "#121212" + } + }, + "scheme-3": { + "settings": { + "background": "#242833", + "background_gradient": "", + "text": "#ffffff", + "button": "#ffffff", + "button_label": "#000000", + "secondary_button_label": "#ffffff", + "shadow": "#121212" + } + }, + "scheme-4": { + "settings": { + "background": "#121212", + "background_gradient": "", + "text": "#ffffff", + "button": "#ffffff", + "button_label": "#121212", + "secondary_button_label": "#ffffff", + "shadow": "#121212" + } + }, + "scheme-5": { + "settings": { + "background": "#334fb4", + "background_gradient": "", + "text": "#ffffff", + "button": "#f3f3f3", + "button_label": "#334fb4", + "secondary_button_label": "#ffffff", + "shadow": "#121212" + } + }, + "scheme-464bc056-aae2-4473-a357-1e829f8e6149": { + "settings": { + "background": "#434343", + "background_gradient": "", + "text": "#ffffff", + "button": "#598db2", + "button_label": "#ffffff", + "secondary_button_label": "#121212", + "shadow": "#121212" + } + }, + "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2": { + "settings": { + "background": "#ffffff", + "background_gradient": "", + "text": "#121212", + "button": "#598db2", + "button_label": "#ffffff", + "secondary_button_label": "#121212", + "shadow": "#121212" + } + }, + "scheme-0b9374bb-6756-47c5-916e-c23251cf8828": { + "settings": { + "background": "#f4cf5f", + "background_gradient": "", + "text": "#000000", + "button": "#121212", + "button_label": "#ffffff", + "secondary_button_label": "#121212", + "shadow": "#121212" + } + } + } + }, "presets": { "Default": { "logo_width": 90, @@ -68,6 +291,8 @@ "spacing_sections": 0, "spacing_grid_horizontal": 8, "spacing_grid_vertical": 8, + "animations_reveal_on_scroll": true, + "animations_hover_elements": "none", "buttons_border_thickness": 1, "buttons_border_opacity": 100, "buttons_radius": 0, @@ -151,8 +376,11 @@ "drawer_shadow_blur": 5, "badge_position": "bottom left", "badge_corner_radius": 40, - "sale_badge_color_scheme": "scheme-5", + "sale_badge_color_scheme": "scheme-4", "sold_out_badge_color_scheme": "scheme-3", + "brand_headline": "", + "brand_description": "

", + "brand_image_width": 100, "social_twitter_link": "", "social_facebook_link": "", "social_pinterest_link": "", @@ -170,20 +398,20 @@ "show_vendor": false, "show_cart_note": false, "cart_drawer_collection": "", + "cart_color_scheme": "scheme-1", "sections": { - "main-password-header": { - "type": "main-password-header", - "settings": { - "color_scheme": "scheme-1" - } - }, - "main-password-footer": { - "type": "main-password-footer", - "settings": { - "color_scheme": "scheme-1" - } - } + "main-password-header": { "type": "main-password-header", "settings": { "color_scheme": "scheme-1" } }, + "main-password-footer": { "type": "main-password-footer", "settings": { "color_scheme": "scheme-1" } } } } + }, + "platform_customizations": { + "custom_css": [ + ":root {--highlight-color: #f4cf5f;}", + "html,body {margin: 0;}", + "body {font-family: var(--font-body-family); line-height: 1.5;}", + "pickup-availability,.product__tax {display: none;}", + ".collection-hero__description {max-width: 100% !important;}" + ] } } diff --git a/config/settings_schema.json b/config/settings_schema.json index 8418a6eefeb..b18edec9f1b 100644 --- a/config/settings_schema.json +++ b/config/settings_schema.json @@ -2,7 +2,7 @@ { "name": "theme_info", "theme_name": "Dawn", - "theme_version": "15.0.1", + "theme_version": "15.1.0", "theme_author": "Shopify", "theme_documentation_url": "https://help.shopify.com/manual/online-store/themes", "theme_support_url": "https://support.shopify.com/" diff --git a/layout/theme.liquid b/layout/theme.liquid index 70db635823b..5ac5229e18a 100644 --- a/layout/theme.liquid +++ b/layout/theme.liquid @@ -1,6 +1,15 @@ + + + + + @@ -234,7 +243,13 @@ height: 100%; } - body { + body + + + + + { display: grid; grid-template-rows: auto auto 1fr auto; grid-template-columns: 100%; diff --git a/locales/it.json b/locales/it.json index 71450d28547..fc60b543880 100644 --- a/locales/it.json +++ b/locales/it.json @@ -35,10 +35,7 @@ "next": "Pagina successiva", "previous": "Pagina precedente" }, - "search": { - "search": "Cerca", - "reset": "Cancella termine ricerca" - }, + "search": { "search": "Cerca", "reset": "Cancella termine ricerca" }, "cart": { "view": "Visualizza carrello ({{ count }})", "item_added": "Articolo aggiunto al carrello", @@ -57,11 +54,7 @@ "name": "Cursore" } }, - "newsletter": { - "label": "Indirizzo email", - "success": "Grazie per l'iscrizione", - "button_label": "Iscriviti" - }, + "newsletter": { "label": "Indirizzo email", "success": "Grazie per l'iscrizione", "button_label": "Iscriviti" }, "accessibility": { "skip_to_text": "Vai direttamente ai contenuti", "close": "Chiudi", @@ -69,10 +62,7 @@ "vendor": "Produttore:", "error": "Errore", "refresh_page": "Scegliendo una selezione si ottiene un aggiornamento completo della pagina.", - "link_messages": { - "new_window": "Si apre in una nuova finestra.", - "external": "Apre un sito web esterno." - }, + "link_messages": { "new_window": "Si apre in una nuova finestra.", "external": "Apre un sito web esterno." }, "loading": "Caricamento in corso...", "skip_to_product_info": "Passa alle informazioni sul prodotto", "total_reviews": "recensioni totali", @@ -84,11 +74,7 @@ "article": { "blog": "Blog", "read_more_title": "Leggi di più: {{ title }}", - "comments": { - "one": "{{ count }} commento", - "other": "{{ count }} commenti", - "many": "{{ count }} commenti" - }, + "comments": { "one": "{{ count }} commento", "other": "{{ count }} commenti", "many": "{{ count }} commenti" }, "moderated": "Si prega di notare che, prima di essere pubblicati, i commenti devono essere approvati.", "comment_form_title": "Lascia un commento", "name": "Nome", @@ -101,10 +87,7 @@ "success_moderated": "Il tuo commento è stato pubblicato. Lo pubblicheremo fra poco, il nostro blog è soggetto a moderazione." } }, - "onboarding": { - "product_title": "Esempio di titolo del prodotto", - "collection_title": "Nome della collezione" - }, + "onboarding": { "product_title": "Esempio di titolo del prodotto", "collection_title": "Nome della collezione" }, "products": { "product": { "add_to_cart": "Aggiungi al carrello", @@ -180,9 +163,7 @@ "duties_included": "Dazi inclusi.", "duties_and_taxes_included": "Dazi e imposte inclusi." }, - "modal": { - "label": "Galleria contenuti multimediali" - }, + "modal": { "label": "Galleria contenuti multimediali" }, "facets": { "apply": "Applica", "clear": "Cancella", @@ -253,9 +234,7 @@ "many": "{{ count }} suggerimenti" } }, - "cart": { - "cart": "Carrello" - }, + "cart": { "cart": "Carrello" }, "contact": { "form": { "name": "Nome", @@ -268,20 +247,13 @@ "title": "Modulo di contatto" } }, - "404": { - "title": "Pagina non trovata", - "subtext": "404" - } + "404": { "title": "Pagina non trovata", "subtext": "404" } }, "sections": { "header": { "announcement": "Annuncio", "menu": "Menu", - "cart_count": { - "one": "{{ count }} articolo", - "other": "{{ count }} articoli", - "many": "{{ count }} articoli" - } + "cart_count": { "one": "{{ count }} articolo", "other": "{{ count }} articoli", "many": "{{ count }} articoli" } }, "cart": { "title": "Il tuo carrello", @@ -315,9 +287,7 @@ "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Imposte, sconti e spedizione calcolati al check-out.", "taxes_at_checkout_shipping_at_checkout_without_policy": "Imposte, sconti e spedizione calcolati al check-out." }, - "footer": { - "payment": "Metodi di pagamento" - }, + "footer": { "payment": "Metodi di pagamento" }, "featured_blog": { "view_all": "Visualizza tutto", "onboarding_title": "Articolo del blog", @@ -327,17 +297,13 @@ "view_all": "Visualizza tutto", "view_all_label": "Visualizza tutti i prodotti della collezione {{ collection_name }}" }, - "collection_list": { - "view_all": "Visualizza tutto" - }, + "collection_list": { "view_all": "Visualizza tutto" }, "collection_template": { "title": "Collezione", "empty": "Nessun prodotto trovato", "use_fewer_filters_html": "Utilizza meno filtri o rimuovi tutto" }, - "video": { - "load_video": "Carica il video: {{ description }}" - }, + "video": { "load_video": "Carica il video: {{ description }}" }, "slideshow": { "load_slide": "Carica slide", "previous_slideshow": "Slide precedente", @@ -347,9 +313,7 @@ "carousel": "Carousel", "slide": "Scorrimento" }, - "page": { - "title": "Titolo pagina" - }, + "page": { "title": "Titolo pagina" }, "announcements": { "previous_announcement": "Annuncio precedente", "next_announcement": "Annuncio successivo", @@ -536,5 +500,6 @@ "expanded": "Modulo destinatario del buono regalo espanso", "collapsed": "Modulo destinatario del buono regalo compresso" } - } + }, + "shopify": { "links": { "powered_by_shopify": " " } } } diff --git a/release-notes.md b/release-notes.md index 0a87e004198..7db15daf14d 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,7 @@ Dawn 15.0.1 introduces a few bug fixes. + ### Fixes and improvements + - Fix issues where when the header section is hidden, some functionalities were broken. - Update cart errors to be output as a string rather than a HTML element. - Escape variant option names so that when an option includes quotation marks it doesn’t cause undesired effects. diff --git a/sections/announcement-bar.liquid b/sections/announcement-bar.liquid index d51fb296b9e..9dc470715ed 100644 --- a/sections/announcement-bar.liquid +++ b/sections/announcement-bar.liquid @@ -43,9 +43,7 @@

{{ section.blocks.first.settings.text | escape }} {%- if section.blocks.first.settings.link != blank -%} - - {{- 'icon-arrow.svg' | inline_asset_content -}} - + {{- 'icon-arrow.svg' | inline_asset_content -}} {%- endif -%}

{%- if section.blocks.first.settings.link != blank -%} @@ -106,9 +104,7 @@

{{ block.settings.text | escape }} {%- if block.settings.link != blank -%} - - {{- 'icon-arrow.svg' | inline_asset_content -}} - + {{- 'icon-arrow.svg' | inline_asset_content -}} {%- endif -%}

{%- if block.settings.link != blank -%} diff --git a/sections/dual-images.liquid b/sections/dual-images.liquid new file mode 100644 index 00000000000..14f082c6bf4 --- /dev/null +++ b/sections/dual-images.liquid @@ -0,0 +1,195 @@ +{% schema %} +{ + "name": "Full-size Image Section", + "settings": [ + { + "type": "range", + "id": "section_height", + "min": 300, + "max": 1000, + "step": 10, + "unit": "px", + "label": "Section Height", + "default": 600 + }, + { + "type": "range", + "id": "image_padding", + "min": 0, + "max": 30, + "step": 1, + "unit": "px", + "label": "Padding Between Images", + "default": 10 + }, + { + "type": "image_picker", + "id": "left_image", + "label": "Left Image" + }, + { + "type": "url", + "id": "left_link", + "label": "Left Image Link" + }, + { + "type": "text", + "id": "left_text", + "label": "Left Image Text" + }, + { + "type": "image_picker", + "id": "right_top_image", + "label": "Right Top Image" + }, + { + "type": "url", + "id": "right_top_link", + "label": "Right Top Image Link" + }, + { + "type": "text", + "id": "right_top_text", + "label": "Right Top Image Text" + }, + { + "type": "image_picker", + "id": "right_bottom_image", + "label": "Right Bottom Image" + }, + { + "type": "url", + "id": "right_bottom_link", + "label": "Right Bottom Image Link" + }, + { + "type": "text", + "id": "right_bottom_text", + "label": "Right Bottom Image Text" + }, + { + "type": "range", + "id": "margin_top", + "min": 0, + "max": 100, + "step": 4, + "unit": "px", + "label": "Top space", + "default": 36 + }, + ], + "presets": [ + { + "name": "Full-size Image Section", + "category": "Image" + } + ] +} +{% endschema %} + + + +
+ + +
\ No newline at end of file diff --git a/sections/footer-group.json b/sections/footer-group.json index a9263d9b541..e37254efa48 100644 --- a/sections/footer-group.json +++ b/sections/footer-group.json @@ -2,52 +2,64 @@ "name": "t:sections.footer.name", "type": "footer", "sections": { + "newsletter_PqaJTL": { + "type": "newsletter", + "blocks": { + "heading_J3hWGA": { + "type": "heading", + "settings": { "heading": "Iscriviti alla nostra Newsletter", "heading_size": "h1" } + }, + "paragraph_FUptkU": { + "type": "paragraph", + "settings": { + "text": "

Per iscritti UNICI...

... Vantaggi multipli! Entra nella COMMUNITY: subito il 10% di sconto sul primo acquisto.

" + } + }, + "email_form_pXCaXA": { "type": "email_form", "settings": {} } + }, + "block_order": ["heading_J3hWGA", "paragraph_FUptkU", "email_form_pXCaXA"], + "custom_css": [], + "settings": { "color_scheme": "scheme-2", "full_width": true, "padding_top": 60, "padding_bottom": 60 } + }, "footer": { "type": "footer", "blocks": { - "footer-0": { + "brand_information_EUx4cC": { "type": "brand_information", "settings": { "show_social": true } }, + "link_list_bqHJzH": { "type": "link_list", - "settings": { - "heading": "Quick links", - "menu": "footer" - } + "settings": { "heading": "Customer Service", "menu": "footer" } }, - "footer-1": { + "link_list_AArWxN": { "type": "link_list", - "settings": { - "heading": "Info", - "menu": "footer" - } + "settings": { "heading": "Design e Concept Store", "menu": "design-e-concept-store" } }, - "footer-2": { - "type": "text", - "settings": { - "heading": "Our mission", - "subtext": "

Share contact information, store details, and brand content with your customers.<\/p>" - } + "feedaty_official_merchant_widget_NUgJYx": { + "type": "shopify://apps/feedaty-official/blocks/merchant-widget/1597c10b-7e15-4dee-9287-4aa2114f0e9c", + "settings": { "merchant_code": "10215169", "data_variant": "200x150-3", "data_id": "selettore1" } } }, "block_order": [ - "footer-0", - "footer-1", - "footer-2" + "brand_information_EUx4cC", + "link_list_bqHJzH", + "link_list_AArWxN", + "feedaty_official_merchant_widget_NUgJYx" ], + "custom_css": [], "settings": { - "color_scheme": "scheme-1", - "newsletter_enable": true, - "newsletter_heading": "Subscribe to our emails", - "show_social": true, - "enable_country_selector": false, - "enable_language_selector": false, + "color_scheme": "scheme-2", + "newsletter_enable": false, + "newsletter_heading": "Iscriviti alla nostra Newsletter", + "enable_follow_on_shop": false, + "show_social": false, + "enable_country_selector": true, + "enable_language_selector": true, "payment_enable": true, - "show_policy": false, - "margin_top": 48, - "padding_top": 36, - "padding_bottom": 36 + "show_policy": true, + "margin_top": 80, + "padding_top": 52, + "padding_bottom": 52 } } }, - "order": [ - "footer" - ] + "order": ["newsletter_PqaJTL", "footer"] } diff --git a/sections/header-group.json b/sections/header-group.json index a9ac3a08a0d..b1ffde4aed9 100644 --- a/sections/header-group.json +++ b/sections/header-group.json @@ -5,40 +5,54 @@ "announcement-bar": { "type": "announcement-bar", "blocks": { - "announcement-bar-0": { + "announcement_fjGnw4": { "type": "announcement", - "settings": { - "text": "Welcome to our store", - "text_alignment": "center", - "color_scheme": "scheme-1", - "link": "" - } + "settings": { "text": "Ti diamo il benvenuto nel nostro negozio", "link": "" } + }, + "announcement_aPLqRk": { + "type": "announcement", + "settings": { "text": "NEWSLETTER U&M: sconto 10% per Te!", "link": "shopify://pages/iscrizione" } + }, + "announcement_HJUy4B": { + "type": "announcement", + "settings": { "text": "Spedizione gratuita da €59", "link": "shopify://policies/shipping-policy" } + }, + "announcement_ktEgez": { + "type": "announcement", + "settings": { "text": "Leggi il blog U&M", "link": "https://blog.unicoemultiplo.com/" } } }, - "block_order": [ - "announcement-bar-0" - ] + "block_order": ["announcement_fjGnw4", "announcement_aPLqRk", "announcement_HJUy4B", "announcement_ktEgez"], + "settings": { + "color_scheme": "scheme-2", + "show_line_separator": false, + "show_social": true, + "auto_rotate": true, + "change_slides_speed": 3, + "enable_country_selector": false, + "enable_language_selector": false + } }, "header": { "type": "header", + "custom_css": [".mega-menu__list {display: flex; flex-wrap: wrap;}", ".mega-menu__list > li {width: 10em;}"], "settings": { - "color_scheme": "scheme-1", - "logo_position": "middle-left", + "logo_position": "top-left", "menu": "main-menu", - "menu_type_desktop": "dropdown", - "sticky_header_type": "on-scroll-up", + "menu_type_desktop": "mega", + "sticky_header_type": "none", "show_line_separator": true, - "enable_country_selector": true, - "enable_language_selector": true, - "mobile_logo_position": "center", + "color_scheme": "scheme-1", + "menu_color_scheme": "scheme-1", + "enable_country_selector": false, + "enable_language_selector": false, + "enable_customer_avatar": true, + "mobile_logo_position": "left", "margin_bottom": 0, "padding_top": 20, "padding_bottom": 20 } } }, - "order": [ - "announcement-bar", - "header" - ] + "order": ["announcement-bar", "header"] } diff --git a/sections/header.liquid b/sections/header.liquid index ebf35e110bf..7f5b42fb42c 100644 --- a/sections/header.liquid +++ b/sections/header.liquid @@ -546,7 +546,7 @@ { "type": "checkbox", "id": "enable_country_selector", - "default": true, + "default": false, "label": "t:sections.header.settings.enable_country_selector.label" }, { @@ -557,7 +557,7 @@ { "type": "checkbox", "id": "enable_language_selector", - "default": true, + "default": false, "label": "t:sections.header.settings.enable_language_selector.label" }, { diff --git a/sections/main-collection-banner.liquid b/sections/main-collection-banner.liquid index 3c944f41564..589d3000e85 100644 --- a/sections/main-collection-banner.liquid +++ b/sections/main-collection-banner.liquid @@ -18,7 +18,13 @@ {%- if section.settings.show_collection_description -%} -

{{ collection.description }}
+
+ {{ collection.description }} + +
+ +
+
{%- endif -%} @@ -45,6 +51,57 @@ +{%- style -%} + .collection-hero__description.to-expand { + max-height: 300px; + + } + + .collection-hero__description.to-expand .collection-hero__description__expand { + opacity: 1; + } + + .collection-hero__description { + max-height: none; + overflow: hidden; + position: relative; + } + + .collection-hero__description__expand { + display: flex; + align-items: flex-end; + justify-content: center; + padding-bottom: 1em; + width: 100%; + height: 9em; + position: absolute; + bottom: 0px; + left: 0px; + background: linear-gradient(to top, #ffffff, transparent); + opacity: 0; + } + + .collection-hero__description__expand button { + } +{%- endstyle -%} + + + {% schema %} { "name": "t:sections.main-collection-banner.name", diff --git a/sections/main-product.liquid b/sections/main-product.liquid index 30890e47acf..79f7eeaa37c 100644 --- a/sections/main-product.liquid +++ b/sections/main-product.liquid @@ -89,6 +89,12 @@ {%- case block.type -%} {%- when '@app' -%} {% render block %} + {%- when 'variant_sku' -%} +
+ {% if product.selected_or_first_available_variant.sku != blank %} +

{{ product.selected_or_first_available_variant.sku }}

+ {% endif %} +
{%- when 'text' -%}

{{- block.settings.link_label | escape -}} - <span class="icon-wrap"> {{ 'icon-arrow.svg' | inline_asset_content }} +  {{ 'icon-arrow.svg' | inline_asset_content }} {%- endif -%} diff --git a/sections/separator.liquid b/sections/separator.liquid new file mode 100644 index 00000000000..986f2fd9e29 --- /dev/null +++ b/sections/separator.liquid @@ -0,0 +1,59 @@ +{% schema %} +{ + "name": "Separator Line", + "settings": [ + { + "type": "range", + "id": "top_spacing", + "min": 0, + "max": 100, + "step": 5, + "unit": "px", + "label": "Top Spacing", + "default": 20 + }, + { + "type": "range", + "id": "bottom_spacing", + "min": 0, + "max": 100, + "step": 5, + "unit": "px", + "label": "Bottom Spacing", + "default": 20 + }, + { + "type": "range", + "id": "line_thickness", + "min": 1, + "max": 10, + "step": 1, + "unit": "px", + "label": "Line Thickness", + "default": 1 + } + ], + "presets": [ + { + "name": "Separator Line", + "category": "Decorative" + } + ] +} +{% endschema %} + + + +

+
+
\ No newline at end of file diff --git a/snippets/header-mega-menu.liquid b/snippets/header-mega-menu.liquid index 8165ccdcb17..59c7d1a850a 100644 --- a/snippets/header-mega-menu.liquid +++ b/snippets/header-mega-menu.liquid @@ -23,9 +23,7 @@ > {{- link.title | escape -}} - - {{- 'icon-caret.svg' | inline_asset_content -}} - + {{- 'icon-caret.svg' | inline_asset_content -}}
Spiacenti, il contenuto che stavi cercando non sembra più essere presente. Ma nessuna paura: ti aiutiamo a ritrovare la strada!", + "text_style": "body" + } + }, + "caption_YpdWmd": { + "type": "caption", + "settings": { + "caption": "riparti dal via!", + "text_style": "caption-with-letter-spacing", + "text_size": "large" + } + }, + "button_VNEyzp": { + "type": "button", + "settings": { + "button_label": "Home Page", + "button_link": "https://www.unicoemultiplo.com/", + "button_style_secondary": false + } + } + }, + "block_order": ["heading_gFfzLB", "text_mLfBKz", "caption_YpdWmd", "button_VNEyzp"], + "settings": { + "image": "shopify://shop_images/404-paginanontrovata_b1c14b21-c78a-42dd-a808-273d9bbf0a45.jpg", + "height": "adapt", + "desktop_image_width": "small", + "layout": "image_first", + "desktop_content_position": "top", + "desktop_content_alignment": "left", + "content_layout": "no-overlap", + "section_color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_behavior": "none", + "mobile_content_alignment": "center", + "padding_top": 36, + "padding_bottom": 36 + } } }, - "order": [ - "main" - ] + "order": ["main", "image_with_text_LT6Arr"] } diff --git a/templates/article.json b/templates/article.json index c1dc6e78638..d82a4415090 100644 --- a/templates/article.json +++ b/templates/article.json @@ -3,38 +3,14 @@ "main": { "type": "main-article", "blocks": { - "featured_image": { - "type": "featured_image", - "settings": { - "image_height": "adapt" - } - }, - "title": { - "type": "title", - "settings": { - "blog_show_date": true, - "blog_show_author": false - } - }, - "share": { - "type": "share", - "settings": { - "share_label": "Share" - } - }, - "content": { - "type": "content" - } + "featured_image": { "type": "featured_image", "settings": { "image_height": "adapt" } }, + "title": { "type": "title", "settings": { "blog_show_date": true, "blog_show_author": false } }, + "share": { "type": "share", "settings": { "share_label": "Share" } }, + "content": { "type": "content", "settings": {} } }, - "block_order": [ - "featured_image", - "title", - "share", - "content" - ] + "block_order": ["featured_image", "title", "share", "content"], + "settings": {} } }, - "order": [ - "main" - ] + "order": ["main"] } diff --git a/templates/blog.json b/templates/blog.json index 9dee6d8a347..af969dad97e 100644 --- a/templates/blog.json +++ b/templates/blog.json @@ -13,7 +13,5 @@ } } }, - "order": [ - "main" - ] + "order": ["main"] } diff --git a/templates/cart.json b/templates/cart.json index c830dd0464e..70bdc495847 100644 --- a/templates/cart.json +++ b/templates/cart.json @@ -3,6 +3,7 @@ "cart-items": { "type": "main-cart-items", "settings": { + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", "padding_top": 36, "padding_bottom": 36 } @@ -10,46 +11,12 @@ "cart-footer": { "type": "main-cart-footer", "blocks": { - "subtotal": { - "type": "subtotal", - "settings": { - } - }, - "buttons": { - "type": "buttons", - "settings": { - } - } + "subtotal": { "type": "subtotal", "settings": {} }, + "buttons": { "type": "buttons", "settings": {} } }, - "block_order": [ - "subtotal", - "buttons" - ] - }, - "featured-collection": { - "type": "featured-collection", - "settings": { - "title": "Featured collection", - "heading_size": "h2", - "collection": "all", - "products_to_show": 4, - "columns_desktop": 4, - "color_scheme": "scheme-1", - "show_view_all": true, - "swipe_on_mobile": false, - "image_ratio": "square", - "show_secondary_image": false, - "show_vendor": false, - "show_rating": false, - "columns_mobile": "2", - "padding_top": 36, - "padding_bottom": 36 - } + "block_order": ["subtotal", "buttons"], + "settings": { "color_scheme": "scheme-1", "padding_top": 20, "padding_bottom": 40 } } }, - "order": [ - "cart-items", - "cart-footer", - "featured-collection" - ] + "order": ["cart-items", "cart-footer"] } diff --git a/templates/collection.SELETTI.json b/templates/collection.SELETTI.json new file mode 100644 index 00000000000..d0eae1e635c --- /dev/null +++ b/templates/collection.SELETTI.json @@ -0,0 +1,84 @@ +{ + "sections": { + "banner": { + "type": "main-collection-banner", + "custom_css": ["a {color: #598db2;}"], + "settings": { + "show_collection_description": true, + "show_collection_image": false, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" + } + }, + "multicolumn_MxLddP": { + "type": "multicolumn", + "blocks": { + "column_PgEVHi": { + "type": "column", + "settings": { + "title": "", + "text": "

NEW! Classics on Acid

NEW! Magna Graecia

Hybrid

Seletti + Marcantonio

", + "link_label": "", + "link": "" + } + }, + "column_pqxUGY": { + "type": "column", + "settings": { + "title": "", + "text": "

Estetico Quotidiano

I-Wares

Diesel Living

Seletti wears Toiletpaper

", + "link_label": "", + "link": "" + } + }, + "column_gPeEtt": { + "type": "column", + "settings": { + "title": "", + "text": "

Kintsugi

Memorabilia

Sanding Animals

Blow by Job

", + "link_label": "", + "link": "" + } + } + }, + "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt"], + "custom_css": [], + "settings": { + "title": "Scopri tutte le Collezioni Seletti", + "heading_size": "h2", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 3, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "scheme-2", + "columns_mobile": "1", + "swipe_on_mobile": true, + "padding_top": 20, + "padding_bottom": 20 + } + }, + "product-grid": { + "type": "main-collection-product-grid", + "settings": { + "products_per_page": 36, + "columns_desktop": 4, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_ratio": "square", + "image_shape": "default", + "show_secondary_image": false, + "show_vendor": false, + "show_rating": true, + "quick_add": "standard", + "enable_filtering": true, + "filter_type": "drawer", + "enable_sorting": true, + "columns_mobile": "2", + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": ["banner", "multicolumn_MxLddP", "product-grid"] +} diff --git a/templates/collection.bitossi-home.json b/templates/collection.bitossi-home.json new file mode 100644 index 00000000000..bb766748a25 --- /dev/null +++ b/templates/collection.bitossi-home.json @@ -0,0 +1,92 @@ +{ + "sections": { + "banner": { + "type": "main-collection-banner", + "custom_css": ["a {color: #598db2;}"], + "settings": { + "show_collection_description": true, + "show_collection_image": false, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" + } + }, + "multicolumn_MxLddP": { + "type": "multicolumn", + "blocks": { + "column_PgEVHi": { + "type": "column", + "settings": { + "title": "", + "text": "

Piatti

Bicchieri & Calici

Tazze & Tazzine

Tovagliette & Vassoi

Le decorazioni

", + "link_label": "", + "link": "" + } + }, + "column_pqxUGY": { + "type": "column", + "settings": { + "title": "", + "text": "

Bicchieri Diseguale

Piatti Botanica

Piatti  Parisienne

Piatti Rose Black

Piatti La Tavola Scomposta

", + "link_label": "", + "link": "" + } + }, + "column_gPeEtt": { + "type": "column", + "settings": { + "title": "", + "text": "

I Piattini

Piatti Frutto della Passione

Piatti Abracadabra

Piatti Smerlo

Piatti Bel Paese

", + "link_label": "", + "link": "" + } + }, + "column_rpy7eJ": { + "type": "column", + "settings": { + "title": "", + "text": "

Demodè

Piatti Petalo

", + "link_label": "", + "link": "" + } + } + }, + "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_rpy7eJ"], + "settings": { + "title": "Scopri tutte le Collezioni Bitossi Home", + "heading_size": "h2", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 4, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "scheme-2", + "columns_mobile": "1", + "swipe_on_mobile": true, + "padding_top": 20, + "padding_bottom": 20 + } + }, + "product-grid": { + "type": "main-collection-product-grid", + "settings": { + "products_per_page": 36, + "columns_desktop": 4, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_ratio": "square", + "image_shape": "default", + "show_secondary_image": false, + "show_vendor": false, + "show_rating": true, + "quick_add": "standard", + "enable_filtering": true, + "filter_type": "drawer", + "enable_sorting": true, + "columns_mobile": "2", + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": ["banner", "multicolumn_MxLddP", "product-grid"] +} diff --git a/templates/collection.brabantia.json b/templates/collection.brabantia.json new file mode 100644 index 00000000000..650796b0324 --- /dev/null +++ b/templates/collection.brabantia.json @@ -0,0 +1,79 @@ +{ + "sections": { + "banner": { + "type": "main-collection-banner", + "custom_css": ["a {color: #598db2;}"], + "settings": { + "show_collection_description": true, + "show_collection_image": false, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" + } + }, + "multicolumn_MxLddP": { + "type": "multicolumn", + "blocks": { + "column_PgEVHi": { + "type": "column", + "settings": { + "title": "", + "text": "

Make&Take

", + "link_label": "", + "link": "" + } + }, + "column_pqxUGY": { + "type": "column", + "settings": { + "title": "", + "text": "

Pattumiere e Cestini

", + "link_label": "", + "link": "" + } + }, + "column_gPeEtt": { "type": "column", "settings": { "title": "", "text": "", "link_label": "", "link": "" } }, + "column_rpy7eJ": { + "type": "column", + "settings": { "title": "", "text": "

", "link_label": "", "link": "" } + } + }, + "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_rpy7eJ"], + "settings": { + "title": "Scopri tutte le Collezioni Brabantia", + "heading_size": "h2", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 4, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "scheme-2", + "columns_mobile": "1", + "swipe_on_mobile": true, + "padding_top": 20, + "padding_bottom": 20 + } + }, + "product-grid": { + "type": "main-collection-product-grid", + "settings": { + "products_per_page": 36, + "columns_desktop": 4, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_ratio": "square", + "image_shape": "default", + "show_secondary_image": false, + "show_vendor": false, + "show_rating": true, + "quick_add": "standard", + "enable_filtering": true, + "filter_type": "drawer", + "enable_sorting": true, + "columns_mobile": "2", + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": ["banner", "multicolumn_MxLddP", "product-grid"] +} diff --git a/templates/collection.brandani.json b/templates/collection.brandani.json new file mode 100644 index 00000000000..f290d277e92 --- /dev/null +++ b/templates/collection.brandani.json @@ -0,0 +1,92 @@ +{ + "sections": { + "banner": { + "type": "main-collection-banner", + "custom_css": ["a {color: #598db2;}"], + "settings": { + "show_collection_description": true, + "show_collection_image": false, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" + } + }, + "multicolumn_MxLddP": { + "type": "multicolumn", + "blocks": { + "column_PgEVHi": { + "type": "column", + "settings": { + "title": "", + "text": "

Antipastiere

Bicchieri e Calici

Bilance da Cucina

Coltelli

Lampade e Lanterne

Orologi

", + "link_label": "", + "link": "" + } + }, + "column_pqxUGY": { + "type": "column", + "settings": { + "title": "", + "text": "

Tazze, Tazzine e Mug

Terracotta

Vassoi

Posate

Piatti

Filodoro

", + "link_label": "", + "link": "" + } + }, + "column_gPeEtt": { + "type": "column", + "settings": { + "title": "", + "text": "

Sinfonia

Fiori di Campo

Flora

Le Cementine

Limoni

Total White

", + "link_label": "", + "link": "" + } + }, + "column_rpy7eJ": { + "type": "column", + "settings": { + "title": "", + "text": "

Medicea

Pomo

Shanti

Punto Oro

Sottobosco

Schiaccianoci

", + "link_label": "", + "link": "" + } + } + }, + "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_rpy7eJ"], + "settings": { + "title": "Scopri tutte le Collezioni Brandani", + "heading_size": "h2", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 4, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "scheme-2", + "columns_mobile": "1", + "swipe_on_mobile": true, + "padding_top": 20, + "padding_bottom": 20 + } + }, + "product-grid": { + "type": "main-collection-product-grid", + "settings": { + "products_per_page": 36, + "columns_desktop": 4, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_ratio": "square", + "image_shape": "default", + "show_secondary_image": false, + "show_vendor": false, + "show_rating": true, + "quick_add": "standard", + "enable_filtering": true, + "filter_type": "drawer", + "enable_sorting": true, + "columns_mobile": "2", + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": ["banner", "multicolumn_MxLddP", "product-grid"] +} diff --git a/templates/collection.json b/templates/collection.json index d12dfab5447..9a5bde03cb5 100644 --- a/templates/collection.json +++ b/templates/collection.json @@ -2,22 +2,27 @@ "sections": { "banner": { "type": "main-collection-banner", + "custom_css": ["a {color: #598db2;}"], "settings": { "show_collection_description": true, "show_collection_image": false, - "color_scheme": "scheme-1" + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" } }, "product-grid": { "type": "main-collection-product-grid", "settings": { - "products_per_page": 16, + "products_per_page": 36, "columns_desktop": 4, - "image_ratio": "adapt", + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_ratio": "square", + "image_shape": "default", "show_secondary_image": false, "show_vendor": false, - "show_rating": false, + "show_rating": true, + "quick_add": "standard", "enable_filtering": true, + "filter_type": "drawer", "enable_sorting": true, "columns_mobile": "2", "padding_top": 36, @@ -25,8 +30,5 @@ } } }, - "order": [ - "banner", - "product-grid" - ] + "order": ["banner", "product-grid"] } diff --git a/templates/collection.knindustrie.json b/templates/collection.knindustrie.json new file mode 100644 index 00000000000..3290ab59e84 --- /dev/null +++ b/templates/collection.knindustrie.json @@ -0,0 +1,93 @@ +{ + "sections": { + "banner": { + "type": "main-collection-banner", + "custom_css": ["a {color: #598db2;}"], + "settings": { + "show_collection_description": true, + "show_collection_image": false, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" + } + }, + "multicolumn_MxLddP": { + "type": "multicolumn", + "blocks": { + "column_PgEVHi": { + "type": "column", + "settings": { + "title": "", + "text": "

ABCT

Beyond Basic

Bicchieri

Coltelli Be Knife

Davide Oldani

", + "link_label": "", + "link": "" + } + }, + "column_pqxUGY": { + "type": "column", + "settings": { + "title": "", + "text": "

Schönhuber-Franchi

Foo'D

Glocal

Lara Caffi

Lunch Layers

", + "link_label": "", + "link": "" + } + }, + "column_gPeEtt": { + "type": "column", + "settings": { + "title": "", + "text": "

Norma

Pentole a Induzione

Piatti

Piero Lissoni

Posate

", + "link_label": "", + "link": "" + } + }, + "column_DVyMJx": { + "type": "column", + "settings": { + "title": "", + "text": "

Stone Work

Taglieri e Workstation

Vassoi

Wok, Tajine, Teppanyaki

Promo

", + "link_label": "", + "link": "" + } + } + }, + "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_DVyMJx"], + "custom_css": [], + "settings": { + "title": "Scopri tutte le Collezioni KnIndustrie", + "heading_size": "h2", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 4, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "scheme-2", + "columns_mobile": "1", + "swipe_on_mobile": true, + "padding_top": 20, + "padding_bottom": 20 + } + }, + "product-grid": { + "type": "main-collection-product-grid", + "settings": { + "products_per_page": 36, + "columns_desktop": 4, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_ratio": "square", + "image_shape": "default", + "show_secondary_image": false, + "show_vendor": false, + "show_rating": true, + "quick_add": "standard", + "enable_filtering": true, + "filter_type": "drawer", + "enable_sorting": true, + "columns_mobile": "2", + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": ["banner", "multicolumn_MxLddP", "product-grid"] +} diff --git a/templates/customers/account.json b/templates/customers/account.json index b9c23984945..474e09dbce3 100644 --- a/templates/customers/account.json +++ b/templates/customers/account.json @@ -1,10 +1,4 @@ { - "sections": { - "main": { - "type": "main-account" - } - }, - "order": [ - "main" - ] + "sections": { "main": { "type": "main-account", "settings": { "padding_top": 36, "padding_bottom": 36 } } }, + "order": ["main"] } diff --git a/templates/customers/activate_account.json b/templates/customers/activate_account.json index 43c41411eb7..d5fcd3229b3 100644 --- a/templates/customers/activate_account.json +++ b/templates/customers/activate_account.json @@ -1,10 +1,4 @@ { - "sections": { - "main": { - "type": "main-activate-account" - } - }, - "order": [ - "main" - ] + "sections": { "main": { "type": "main-activate-account", "settings": { "padding_top": 36, "padding_bottom": 36 } } }, + "order": ["main"] } diff --git a/templates/customers/addresses.json b/templates/customers/addresses.json index fc30f2a34e9..1b7adf1baa6 100644 --- a/templates/customers/addresses.json +++ b/templates/customers/addresses.json @@ -1,10 +1,4 @@ { - "sections": { - "main": { - "type": "main-addresses" - } - }, - "order": [ - "main" - ] + "sections": { "main": { "type": "main-addresses", "settings": { "padding_top": 36, "padding_bottom": 36 } } }, + "order": ["main"] } diff --git a/templates/customers/login.json b/templates/customers/login.json index ece53782e3b..b482cd95dcd 100644 --- a/templates/customers/login.json +++ b/templates/customers/login.json @@ -1,10 +1,34 @@ { "sections": { + "rich_text_dDKpg7": { + "type": "rich-text", + "blocks": { + "button_3YKBab": { + "type": "button", + "settings": { + "button_label": "Crea account", + "button_link": "/account/register", + "button_style_secondary": false, + "button_label_2": "", + "button_link_2": "", + "button_style_secondary_2": false + } + } + }, + "block_order": ["button_3YKBab"], + "settings": { + "desktop_content_position": "center", + "content_alignment": "center", + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "full_width": true, + "padding_top": 24, + "padding_bottom": 16 + } + }, "main": { - "type": "main-login" + "type": "main-login", + "settings": { "enable_shop_login_button": false, "padding_top": 36, "padding_bottom": 36 } } }, - "order": [ - "main" - ] + "order": ["rich_text_dDKpg7", "main"] } diff --git a/templates/customers/order.json b/templates/customers/order.json index b23bc48a5ae..f904fbf3d1c 100644 --- a/templates/customers/order.json +++ b/templates/customers/order.json @@ -1,10 +1,4 @@ { - "sections": { - "main": { - "type": "main-order" - } - }, - "order": [ - "main" - ] + "sections": { "main": { "type": "main-order", "settings": { "padding_top": 36, "padding_bottom": 36 } } }, + "order": ["main"] } diff --git a/templates/customers/register.json b/templates/customers/register.json index 3d82f084fd3..835cc32d8e0 100644 --- a/templates/customers/register.json +++ b/templates/customers/register.json @@ -1,10 +1,4 @@ { - "sections": { - "main": { - "type": "main-register" - } - }, - "order": [ - "main" - ] + "sections": { "main": { "type": "main-register", "settings": { "padding_top": 36, "padding_bottom": 36 } } }, + "order": ["main"] } diff --git a/templates/customers/reset_password.json b/templates/customers/reset_password.json index cf74f5bdda2..cb16c41cd5b 100644 --- a/templates/customers/reset_password.json +++ b/templates/customers/reset_password.json @@ -1,10 +1,4 @@ { - "sections": { - "main": { - "type": "main-reset-password" - } - }, - "order": [ - "main" - ] + "sections": { "main": { "type": "main-reset-password", "settings": { "padding_top": 36, "padding_bottom": 36 } } }, + "order": ["main"] } diff --git a/templates/index.json b/templates/index.json index 92d10b71ece..dff3c8e570e 100644 --- a/templates/index.json +++ b/templates/index.json @@ -1,189 +1,390 @@ { "sections": { - "image_banner": { - "type": "image-banner", + "multicolumn_rGUHzh": { + "type": "multicolumn", "blocks": { - "heading": { - "type": "heading", - "settings": { - "heading": "Image banner", - "heading_size": "h0" - } - }, - "text": { - "type": "text", + "column_4PjnNt": { + "type": "column", "settings": { - "text": "Give customers details about the banner image(s) or content on the template.", - "text_style": "body" + "image": "shopify://shop_images/Snapinsta.app_449689181_865635138936138_1622082402760830127_n_1080_1.jpg", + "title": "BITOSSI HOME", + "text": "

Piatti Petalo

", + "link_label": "", + "link": "shopify://collections/bitossi-home-petalo-bitossi-home" } }, - "button": { - "type": "buttons", + "column_pkHkxr": { + "type": "column", "settings": { - "button_label_1": "Shop all", - "button_link_1": "shopify://collections/all", - "button_style_secondary_1": true, - "button_label_2": "", - "button_link_2": "", - "button_style_secondary_2": false + "image": "shopify://shop_images/KnIndustrie-bicchieri.webp", + "title": "KNIDUSTRIE", + "text": "

I Bicchieri

", + "link_label": "", + "link": "" } } }, - "block_order": [ - "heading", - "text", - "button" + "block_order": ["column_4PjnNt", "column_pkHkxr"], + "custom_css": [ + ".background-none .multicolumn-card__image-wrapper {margin: unset;}", + ".multicolumn-list__item {position: relative;}", + ".multicolumn-card__info {position: absolute; top: 0em; left: 2em;}", + ".multicolumn-card__info h3 {color: #fff; font-size: 2em;}", + ".multicolumn-card__info p {color: #fff;}" ], "settings": { - "image_overlay_opacity": 40, - "image_height": "large", - "desktop_content_position": "bottom-center", - "show_text_box": false, - "desktop_content_alignment": "center", - "color_scheme": "scheme-3", - "mobile_content_alignment": "center", - "stack_images_on_mobile": false, - "show_text_below": false + "title": "", + "heading_size": "h1", + "image_width": "full", + "image_ratio": "square", + "columns_desktop": 2, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "", + "columns_mobile": "1", + "swipe_on_mobile": false, + "padding_top": 80, + "padding_bottom": 20 } }, - "rich_text": { + "separator_afe6ke": { + "type": "separator", + "custom_css": ["hr,.div-separator {margin: 30px 0;}"], + "settings": { "top_spacing": 10, "bottom_spacing": 10, "line_thickness": 1 } + }, + "rich_text_cn9HQ7": { "type": "rich-text", "blocks": { - "heading": { + "heading_nXqN4c": { "type": "heading", - "settings": { - "heading": "Talk about your brand", - "heading_size": "h1" - } + "settings": { "heading": "Seletti Magna Graecia", "heading_size": "h1" } + }, + "heading_Fiibrj": { + "type": "heading", + "settings": { "heading": "La collezione di terracotte che ti conquisterà", "heading_size": "h2" } }, - "text": { + "text_kY63iq": { "type": "text", - "settings": { - "text": "

Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.<\/p>" - } + "settings": { "text": "

Un incontro totalmente nuovo conforme e bellezza ispirate alla classicità.

" } } }, - "block_order": [ - "heading", - "text" - ], + "block_order": ["heading_nXqN4c", "heading_Fiibrj", "text_kY63iq"], "settings": { - "color_scheme": "scheme-1", + "desktop_content_position": "center", + "content_alignment": "center", + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", "full_width": true, - "padding_top": 40, - "padding_bottom": 0 + "padding_top": 0, + "padding_bottom": 20 } }, - "featured_collection": { + "featured_collection_zEJpm8": { "type": "featured-collection", "settings": { - "title": "Featured products", - "heading_size": "h2", - "collection": "all", - "products_to_show": 8, - "columns_desktop": 4, - "color_scheme": "scheme-1", - "show_view_all": false, - "swipe_on_mobile": false, - "image_ratio": "adapt", + "title": "", + "heading_size": "h1", + "description": "", + "show_description": false, + "description_style": "body", + "collection": "seletti-seletti-magna-graecia", + "products_to_show": 10, + "columns_desktop": 6, + "full_width": true, + "show_view_all": true, + "view_all_style": "link", + "enable_desktop_slider": true, + "color_scheme": "", + "image_ratio": "square", + "image_shape": "default", "show_secondary_image": true, "show_vendor": false, "show_rating": false, + "quick_add": "none", "columns_mobile": "2", - "padding_top": 28, - "padding_bottom": 36 + "swipe_on_mobile": true, + "padding_top": 0, + "padding_bottom": 0 } }, - "collage": { - "type": "collage", + "separator_yyJkQg": { + "type": "separator", + "custom_css": ["hr,.div-separator {margin: 30px 0;}"], + "settings": { "top_spacing": 5, "bottom_spacing": 5, "line_thickness": 1 } + }, + "rich_text_7MwH7c": { + "type": "rich-text", "blocks": { - "collection-0": { - "type": "collection", + "heading_hwCfYP": { + "type": "heading", + "settings": { "heading": "Lo stile che dà forma alle tue idee", "heading_size": "h1" } + }, + "text_AUrHzV": { + "type": "text", + "settings": { + "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino: rendi concrete le tue idee!

" + } + } + }, + "block_order": ["heading_hwCfYP", "text_AUrHzV"], + "settings": { + "desktop_content_position": "center", + "content_alignment": "center", + "color_scheme": "", + "full_width": true, + "padding_top": 0, + "padding_bottom": 0 + } + }, + "multicolumn_pyNBEg": { + "type": "multicolumn", + "blocks": { + "column_Dc34aY": { + "type": "column", + "settings": { + "image": "shopify://shop_images/Seletti-cucina-e-tavola.webp", + "title": "Cucina & Tavola", + "text": "", + "link_label": "", + "link": "" + } + }, + "column_RtQ7KC": { + "type": "column", "settings": { - "collection": "" + "image": "shopify://shop_images/Arredo-complementi.webp", + "title": "Arredo", + "text": "", + "link_label": "", + "link": "" + } + }, + "column_kUiCKr": { + "type": "column", + "settings": { + "image": "shopify://shop_images/purchased-favorite-coffee.jpg", + "title": "Categoria 3", + "text": "", + "link_label": "", + "link": "" + } + }, + "column_H9PG3A": { + "type": "column", + "settings": { + "image": "shopify://shop_images/purchased-favorite-coffee.jpg", + "title": "Categoria 3", + "text": "", + "link_label": "", + "link": "" } }, - "product": { - "type": "product", + "column_mbxQN4": { + "type": "column", "settings": { - "product": "", - "second_image": false + "image": "shopify://shop_images/purchased-favorite-coffee.jpg", + "title": "Categoria 3", + "text": "", + "link_label": "", + "link": "" } }, - "collection-1": { - "type": "collection", + "column_7y4mWL": { + "type": "column", "settings": { - "collection": "" + "image": "shopify://shop_images/purchased-favorite-coffee.jpg", + "title": "Categoria 3", + "text": "", + "link_label": "", + "link": "" } } }, "block_order": [ - "collection-0", - "product", - "collection-1" + "column_Dc34aY", + "column_RtQ7KC", + "column_kUiCKr", + "column_H9PG3A", + "column_mbxQN4", + "column_7y4mWL" ], + "custom_css": [".background-none .multicolumn-card__image-wrapper {margin: unset;}"], "settings": { - "heading": "Multimedia collage", + "title": "", "heading_size": "h2", - "desktop_layout": "left", - "mobile_layout": "collage", - "color_scheme": "scheme-1", - "padding_top": 36, - "padding_bottom": 36 + "image_width": "full", + "image_ratio": "portrait", + "columns_desktop": 6, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "columns_mobile": "2", + "swipe_on_mobile": true, + "padding_top": 52, + "padding_bottom": 0 } }, - "video": { - "type": "video", + "separator_3hxJJU": { + "type": "separator", + "custom_css": ["hr,.div-separator {margin: 30px 0;}"], + "settings": { "top_spacing": 15, "bottom_spacing": 20, "line_thickness": 1 } + }, + "rich_text_3WWRXG": { + "type": "rich-text", + "blocks": { + "heading_8zwk4f": { "type": "heading", "settings": { "heading": "I Nostri Brand", "heading_size": "h1" } }, + "text_VRF4TV": { + "type": "text", + "settings": { + "text": "

Le proposte dei migliori designer italiani e internazionali, le ultime proposte e i classici d'autore. 
Lo stile come non lo hai mai visto!

" + } + } + }, + "block_order": ["heading_8zwk4f", "text_VRF4TV"], "settings": { - "heading": "", - "video_url": "https://www.youtube.com/watch?v=_9VUPq3SxOc", - "heading_size": "h1", - "description": "", - "full_width": false, - "color_scheme": "scheme-1", - "padding_top": 36, - "padding_bottom": 36 + "desktop_content_position": "center", + "content_alignment": "center", + "color_scheme": "", + "full_width": true, + "padding_top": 0, + "padding_bottom": 0 } }, - "multicolumn": { + "multicolumn_w64iw4": { "type": "multicolumn", "blocks": { - "column1": { + "column_iTHqLj": { "type": "column", "settings": { - "title": "Column", - "text": "

Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>", + "image": "shopify://shop_images/Bitossi.jpg", + "title": "", + "text": "", "link_label": "", "link": "" } }, - "column2": { + "column_4n44GN": { "type": "column", "settings": { - "title": "Column", - "text": "

Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>", + "image": "shopify://shop_images/Seletti.jpg", + "title": "", + "text": "", "link_label": "", "link": "" } }, - "column3": { + "column_RYybqr": { "type": "column", "settings": { - "title": "Column", - "text": "

Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>", + "image": "shopify://shop_images/Brandantia.jpg", + "title": "", + "text": "", "link_label": "", "link": "" } - } + }, + "column_UnjJVg": { + "type": "column", + "settings": { + "image": "shopify://shop_images/Ichendorf.jpg", + "title": "", + "text": "", + "link_label": "", + "link": "" + } + }, + "column_iHCTrV": { + "type": "column", + "settings": { + "image": "shopify://shop_images/Millefiori.jpg", + "title": "", + "text": "", + "link_label": "", + "link": "" + } + }, + "column_BntmaF": { + "type": "column", + "settings": { + "image": "shopify://shop_images/Brandani.jpg", + "title": "", + "text": "", + "link_label": "", + "link": "" + } + }, + "column_dNExGV": { "type": "column", "settings": { "title": "", "text": "", "link_label": "", "link": "" } } }, "block_order": [ - "column1", - "column2", - "column3" + "column_iTHqLj", + "column_4n44GN", + "column_RYybqr", + "column_UnjJVg", + "column_iHCTrV", + "column_BntmaF", + "column_dNExGV" ], + "custom_css": [], "settings": { "title": "", "heading_size": "h1", + "image_width": "full", + "image_ratio": "square", + "columns_desktop": 6, + "column_alignment": "left", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "", + "columns_mobile": "2", + "swipe_on_mobile": true, + "padding_top": 40, + "padding_bottom": 0 + } + }, + "multicolumn_mrQQRJ": { + "type": "multicolumn", + "blocks": { + "column_8HAwtH": { + "type": "column", + "settings": { + "image": "shopify://shop_images/spedizione_1.jpg", + "title": "CONSEGNA E RESO GRATIS", + "text": "

Per tutti gli ordini da 59,00€

", + "link_label": "", + "link": "" + } + }, + "column_xaMbin": { + "type": "column", + "settings": { + "image": "shopify://shop_images/pagamenti_sicuri_2.jpg", + "title": "PAGAMENTI 100% SICURI", + "text": "

Carte, PayPal, bonifico, contrassegno

", + "link_label": "", + "link": "" + } + }, + "column_8HGPgi": { + "type": "column", + "settings": { + "image": "shopify://shop_images/assistenza_supporto.jpg", + "title": "ASSISTENZA E SUPPORTO", + "text": "

Chat, telefono, email, Whatsapp

", + "link_label": "", + "link": "" + } + } + }, + "block_order": ["column_8HAwtH", "column_xaMbin", "column_8HGPgi"], + "disabled": true, + "custom_css": [".elemento {width: 50%; aspect-ratio: 16 / 9; height: auto;}"], + "settings": { + "title": "", + "heading_size": "h2", "image_width": "third", "image_ratio": "adapt", "columns_desktop": 3, @@ -191,20 +392,47 @@ "background_style": "none", "button_label": "", "button_link": "", - "swipe_on_mobile": false, - "color_scheme": "scheme-1", + "color_scheme": "", "columns_mobile": "1", - "padding_top": 36, - "padding_bottom": 36 + "swipe_on_mobile": false, + "padding_top": 0, + "padding_bottom": 60 } + }, + "newsletter_6i9tEi": { + "type": "newsletter", + "blocks": { + "heading_7mLhy6": { + "type": "heading", + "settings": { "heading": "Iscriviti alla nostra Newsletter", "heading_size": "h1" } + }, + "paragraph_7FqTVq": { + "type": "paragraph", + "settings": { + "text": "

Per iscritti UNICI... Vantaggi MULTIPLI! Entra nella COMMUNITY e avrai subito il 10% di sconto sul primo acquisto.

" + } + }, + "email_form_EtXRTJ": { "type": "email_form", "settings": {} } + }, + "block_order": ["heading_7mLhy6", "paragraph_7FqTVq", "email_form_EtXRTJ"], + "custom_css": [ + ".newsletter__wrapper {border: 1px solid rgba(var(--color-foreground), 0.08); border-radius: 0.5em; margin-top: 80px;}" + ], + "settings": { "color_scheme": "", "full_width": false, "padding_top": 40, "padding_bottom": 52 } } }, "order": [ - "image_banner", - "rich_text", - "featured_collection", - "collage", - "video", - "multicolumn" + "multicolumn_rGUHzh", + "separator_afe6ke", + "rich_text_cn9HQ7", + "featured_collection_zEJpm8", + "separator_yyJkQg", + "rich_text_7MwH7c", + "multicolumn_pyNBEg", + "separator_3hxJJU", + "rich_text_3WWRXG", + "multicolumn_w64iw4", + "multicolumn_mrQQRJ", + "newsletter_6i9tEi" ] } diff --git a/templates/list-collections.json b/templates/list-collections.json index b7247f30856..d97c3e08132 100644 --- a/templates/list-collections.json +++ b/templates/list-collections.json @@ -5,11 +5,11 @@ "settings": { "title": "Collections", "sort": "alphabetical", - "image_ratio": "square" + "image_ratio": "square", + "columns_desktop": 5, + "columns_mobile": "2" } } }, - "order": [ - "main" - ] + "order": ["main"] } diff --git a/templates/page.brand.json b/templates/page.brand.json new file mode 100644 index 00000000000..2761a6654c1 --- /dev/null +++ b/templates/page.brand.json @@ -0,0 +1,4 @@ +{ + "sections": { "main": { "type": "main-page", "settings": { "padding_top": 28, "padding_bottom": 28 } } }, + "order": ["main"] +} diff --git a/templates/page.contact.json b/templates/page.contact.json index 73a56c11d11..876a8b6b410 100644 --- a/templates/page.contact.json +++ b/templates/page.contact.json @@ -1,12 +1,6 @@ { "sections": { - "main": { - "type": "main-page", - "settings": { - "padding_top": 36, - "padding_bottom": 36 - } - }, + "main": { "type": "main-page", "settings": { "padding_top": 36, "padding_bottom": 36 } }, "form": { "type": "contact-form", "settings": { @@ -18,8 +12,5 @@ } } }, - "order": [ - "main", - "form" - ] + "order": ["main", "form"] } diff --git a/templates/page.json b/templates/page.json index f2ee79be1f7..2761a6654c1 100644 --- a/templates/page.json +++ b/templates/page.json @@ -1,14 +1,4 @@ { - "sections": { - "main": { - "type": "main-page", - "settings": { - "padding_top": 28, - "padding_bottom": 28 - } - } - }, - "order": [ - "main" - ] + "sections": { "main": { "type": "main-page", "settings": { "padding_top": 28, "padding_bottom": 28 } } }, + "order": ["main"] } diff --git a/templates/page.newsletter.json b/templates/page.newsletter.json new file mode 100644 index 00000000000..e69c8126647 --- /dev/null +++ b/templates/page.newsletter.json @@ -0,0 +1,6 @@ +{ + "sections": { + "main": { "type": "main-page", "disabled": true, "settings": { "padding_top": 28, "padding_bottom": 28 } } + }, + "order": ["main"] +} diff --git a/templates/password.json b/templates/password.json index 5366ca07a5a..cd126501268 100644 --- a/templates/password.json +++ b/templates/password.json @@ -4,29 +4,14 @@ "main": { "type": "email-signup-banner", "blocks": { - "heading": { - "type": "heading", - "settings": { - "heading": "Opening soon", - "heading_size": "h1" - } - }, + "heading": { "type": "heading", "settings": { "heading": "Opening soon", "heading_size": "h1" } }, "paragraph": { "type": "paragraph", - "settings": { - "text": "

Be the first to know when we launch.<\/p>", - "text_style": "body" - } + "settings": { "text": "

Be the first to know when we launch.

", "text_style": "body" } }, - "email_form": { - "type": "email_form" - } + "email_form": { "type": "email_form", "settings": {} } }, - "block_order": [ - "heading", - "paragraph", - "email_form" - ], + "block_order": ["heading", "paragraph", "email_form"], "settings": { "image_overlay_opacity": 0, "show_background_image": true, @@ -40,7 +25,5 @@ } } }, - "order": [ - "main" - ] + "order": ["main"] } diff --git a/templates/product.json b/templates/product.json index 62fb0ab6af7..fea78282bde 100644 --- a/templates/product.json +++ b/templates/product.json @@ -3,201 +3,87 @@ "main": { "type": "main-product", "blocks": { - "vendor": { + "text_Fn8rie": { "type": "text", "settings": { - "text": "{{ product.vendor }}", - "text_style": "uppercase" - } - }, - "title": { - "type": "title" - }, - "caption": { - "type": "text", - "settings": { - "text": "{{ product.metafields.descriptors.subtitle.value }}", + "text": "{{ product.metafields.custom[\"brand-produttore\"].value }}", "text_style": "subtitle" } }, - "price": { - "type": "price" + "title": { "type": "title", "settings": {} }, + "variant_sku_BLBrqe": { "type": "variant_sku", "settings": {} }, + "price_XLK3Aj": { "type": "price", "settings": {} }, + "custom_liquid_tm8pXP": { + "type": "custom_liquid", + "settings": { "custom_liquid": "{{ product.metafields.custom.short_description }}" } }, "variant_picker": { "type": "variant_picker", - "settings": { - "picker_type": "button" - } - }, - "quantity_selector": { - "type": "quantity_selector" + "settings": { "picker_type": "dropdown", "swatch_shape": "circle" } }, + "quantity_selector": { "type": "quantity_selector", "settings": {} }, "buy_buttons": { "type": "buy_buttons", - "settings": { - "show_dynamic_checkout": true, - "show_gift_card_recipient": true - } + "settings": { "show_dynamic_checkout": true, "show_gift_card_recipient": false } }, - "description": { - "type": "description" - }, - "collapsible-row-0": { - "type": "collapsible_tab", + "sku_C4aTJC": { "type": "sku", "disabled": true, "settings": { "text_style": "body" } }, + "description": { "type": "description", "disabled": true, "settings": {} }, + "custom_liquid_zVHD4U": { + "type": "custom_liquid", + "disabled": true, "settings": { - "heading": "Materials", - "icon": "leather", - "content": "", - "page": "" - } - }, - "collapsible-row-1": { - "type": "collapsible_tab", - "settings": { - "heading": "Shipping & Returns", - "icon": "truck", - "content": "", - "page": "" - } - }, - "collapsible-row-2": { - "type": "collapsible_tab", - "settings": { - "heading": "Dimensions", - "icon": "ruler", - "content": "", - "page": "" - } - }, - "collapsible-row-3": { - "type": "collapsible_tab", - "settings": { - "heading": "Care Instructions", - "icon": "heart", - "content": "", - "page": "" - } - }, - "share": { - "type": "share", - "settings": { - "share_label": "Share" + "custom_liquid": "{% for metafield in product.metafields.custom %}\n

\n {{ metafield[0] }}: \n {{ metafield[1] | json }}\n

\n{% endfor %}" } } }, "block_order": [ - "vendor", + "text_Fn8rie", "title", - "caption", - "price", + "variant_sku_BLBrqe", + "price_XLK3Aj", + "custom_liquid_tm8pXP", "variant_picker", "quantity_selector", "buy_buttons", + "sku_C4aTJC", "description", - "collapsible-row-0", - "collapsible-row-1", - "collapsible-row-2", - "collapsible-row-3", - "share" + "custom_liquid_zVHD4U" ], "settings": { "enable_sticky_info": true, - "gallery_layout": "stacked", - "media_size": "large", + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "media_size": "medium", "constrain_to_viewport": true, - "mobile_thumbnails": "hide", + "media_fit": "contain", + "gallery_layout": "thumbnail_slider", + "media_position": "left", + "image_zoom": "hover", + "mobile_thumbnails": "show", "hide_variants": true, "enable_video_looping": false, "padding_top": 36, "padding_bottom": 12 } }, - "image-with-text": { - "type": "image-with-text", - "blocks": { - "image-with-text-0": { - "type": "heading", - "settings": { - "heading": "Image with text", - "heading_size": "h1" - } - }, - "image-with-text-1": { - "type": "text", - "settings": { - "text": "

Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>", - "text_style": "body" - } - } - }, - "block_order": [ - "image-with-text-0", - "image-with-text-1" - ], - "settings": { - "height": "small", - "desktop_image_width": "medium", - "layout": "text_first", - "desktop_content_position": "top", - "desktop_content_alignment": "left", - "content_layout": "no-overlap", - "color_scheme": "scheme-2", - "mobile_content_alignment": "left", - "padding_top": 36, - "padding_bottom": 36 - } - }, - "multicolumn": { - "type": "multicolumn", - "blocks": { - "column-0": { - "type": "column", - "settings": { - "title": "Free Shipping", - "text": "

Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>", - "link_label": "", - "link": "" - } - }, - "column-1": { - "type": "column", - "settings": { - "title": "Hassle-Free Exchanges", - "text": "

Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>", - "link_label": "", - "link": "" - } - } - }, - "block_order": [ - "column-0", - "column-1" - ], + "custom_liquid_q83gja": { + "type": "custom-liquid", "settings": { - "title": "", - "heading_size": "h1", - "image_width": "full", - "image_ratio": "adapt", - "columns_desktop": 2, - "column_alignment": "left", - "background_style": "none", - "button_label": "", - "button_link": "", - "swipe_on_mobile": false, - "color_scheme": "scheme-1", - "columns_mobile": "1", - "padding_top": 36, - "padding_bottom": 36 + "custom_liquid": "

\n
\n

Descrizione

\n{{ product.content }}\n
\n
", + "color_scheme": "", + "padding_top": 40, + "padding_bottom": 52 } }, "related-products": { "type": "related-products", "settings": { - "heading": "You may also like", + "heading": "Potrebbe piacerti anche...", "heading_size": "h2", - "columns_desktop": 4, + "products_to_show": 5, + "columns_desktop": 5, "color_scheme": "scheme-1", "image_ratio": "square", + "image_shape": "default", "show_secondary_image": true, "show_vendor": false, "show_rating": false, @@ -207,10 +93,5 @@ } } }, - "order": [ - "main", - "image-with-text", - "multicolumn", - "related-products" - ] + "order": ["main", "custom_liquid_q83gja", "related-products"] } diff --git a/templates/search.json b/templates/search.json index 3aa4542e8df..1ae8bdf7354 100644 --- a/templates/search.json +++ b/templates/search.json @@ -5,10 +5,12 @@ "settings": { "columns_desktop": 4, "image_ratio": "adapt", + "image_shape": "default", "show_secondary_image": false, "show_vendor": false, "show_rating": false, "enable_filtering": true, + "filter_type": "horizontal", "enable_sorting": true, "article_show_date": true, "article_show_author": false, @@ -18,7 +20,5 @@ } } }, - "order": [ - "main" - ] + "order": ["main"] } diff --git a/translation.yml b/translation.yml index d631217ef3b..df441e77fbc 100644 --- a/translation.yml +++ b/translation.yml @@ -1,5 +1,37 @@ source_language: en -target_languages: [bg, cs, da, de, el, es, fi, fr, hr, hu, id, it, ja, ko, lt, nb, nl, pl, pt-BR, pt-PT, ro, ru, sk, sl, sv, th, tr, vi, zh-CN, zh-TW] +target_languages: + [ + bg, + cs, + da, + de, + el, + es, + fi, + fr, + hr, + hu, + id, + it, + ja, + ko, + lt, + nb, + nl, + pl, + pt-BR, + pt-PT, + ro, + ru, + sk, + sl, + sv, + th, + tr, + vi, + zh-CN, + zh-TW, + ] non_blocking_languages: [] async_pr_mode: per_pr components: From bda2edbcd00eeb5a9feffdd9f4ef141e4895ddc2 Mon Sep 17 00:00:00 2001 From: Diego Pasquali Date: Fri, 30 Aug 2024 11:23:49 +0200 Subject: [PATCH 003/117] Update `theme_name` --- config/settings_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/settings_schema.json b/config/settings_schema.json index b18edec9f1b..596f842597b 100644 --- a/config/settings_schema.json +++ b/config/settings_schema.json @@ -1,7 +1,7 @@ [ { "name": "theme_info", - "theme_name": "Dawn", + "theme_name": "Unico & Multiplo Dawn", "theme_version": "15.1.0", "theme_author": "Shopify", "theme_documentation_url": "https://help.shopify.com/manual/online-store/themes", From 68e8a62a4c245dbea03a40e1a8ce69272bbffd5d Mon Sep 17 00:00:00 2001 From: Diego Pasquali Date: Fri, 30 Aug 2024 11:33:05 +0200 Subject: [PATCH 004/117] Recent update --- sections/footer-group.json | 1 + templates/index.json | 34 ++++++++-------- templates/page.brand.json | 71 +++++++++++++++++++++++++++++++++- templates/page.newsletter.json | 25 +++++++++++- 4 files changed, 110 insertions(+), 21 deletions(-) diff --git a/sections/footer-group.json b/sections/footer-group.json index e37254efa48..a7235801757 100644 --- a/sections/footer-group.json +++ b/sections/footer-group.json @@ -18,6 +18,7 @@ "email_form_pXCaXA": { "type": "email_form", "settings": {} } }, "block_order": ["heading_J3hWGA", "paragraph_FUptkU", "email_form_pXCaXA"], + "disabled": true, "custom_css": [], "settings": { "color_scheme": "scheme-2", "full_width": true, "padding_top": 60, "padding_bottom": 60 } }, diff --git a/templates/index.json b/templates/index.json index dff3c8e570e..83c72f14191 100644 --- a/templates/index.json +++ b/templates/index.json @@ -144,28 +144,28 @@ "type": "column", "settings": { "image": "shopify://shop_images/Seletti-cucina-e-tavola.webp", - "title": "Cucina & Tavola", - "text": "", + "title": "", + "text": "

Cucina & Tavola

", "link_label": "", - "link": "" + "link": "shopify://collections/cucina-e-tavola" } }, "column_RtQ7KC": { "type": "column", "settings": { "image": "shopify://shop_images/Arredo-complementi.webp", - "title": "Arredo", - "text": "", + "title": "", + "text": "

Arredo & Complementi

", "link_label": "", - "link": "" + "link": "shopify://collections/complementi-arredo" } }, "column_kUiCKr": { "type": "column", "settings": { - "image": "shopify://shop_images/purchased-favorite-coffee.jpg", - "title": "Categoria 3", - "text": "", + "image": "shopify://shop_images/Lifestile-cassa-speaker.webp", + "title": "", + "text": "

Lifestyle

", "link_label": "", "link": "" } @@ -173,8 +173,8 @@ "column_H9PG3A": { "type": "column", "settings": { - "image": "shopify://shop_images/purchased-favorite-coffee.jpg", - "title": "Categoria 3", + "image": "shopify://shop_images/Untitled_design_-_2024-08-30T103013.767.webp", + "title": "Illuninazione", "text": "", "link_label": "", "link": "" @@ -183,8 +183,8 @@ "column_mbxQN4": { "type": "column", "settings": { - "image": "shopify://shop_images/purchased-favorite-coffee.jpg", - "title": "Categoria 3", + "image": "shopify://shop_images/Ufficio.webp", + "title": "Ufficio", "text": "", "link_label": "", "link": "" @@ -193,11 +193,11 @@ "column_7y4mWL": { "type": "column", "settings": { - "image": "shopify://shop_images/purchased-favorite-coffee.jpg", - "title": "Categoria 3", + "image": "shopify://shop_images/Idee-regalo.jpg", + "title": "Idee Regalo", "text": "", "link_label": "", - "link": "" + "link": "/collections/tempo-libero" } } }, @@ -216,7 +216,7 @@ "image_width": "full", "image_ratio": "portrait", "columns_desktop": 6, - "column_alignment": "left", + "column_alignment": "center", "background_style": "none", "button_label": "", "button_link": "", diff --git a/templates/page.brand.json b/templates/page.brand.json index 2761a6654c1..1719b687269 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -1,4 +1,71 @@ { - "sections": { "main": { "type": "main-page", "settings": { "padding_top": 28, "padding_bottom": 28 } } }, - "order": ["main"] + "sections": { + "main": { "type": "main-page", "settings": { "padding_top": 28, "padding_bottom": 28 } }, + "multicolumn_bQcFQg": { + "type": "multicolumn", + "blocks": { + "column_Ktbmi8": { + "type": "column", + "settings": { + "image": "shopify://shop_images/Ab.jpg", + "title": "", + "text": "

Ab+Abert

", + "link_label": "", + "link": "shopify://collections/ab-abert" + } + }, + "column_jAmHTG": { + "type": "column", + "settings": { + "image": "shopify://shop_images/Bitossi_0b488b14-02a4-4329-9977-2f11a8fb7315.jpg", + "title": "", + "text": "

Bitossi Home

", + "link_label": "", + "link": "" + } + }, + "column_cghWLX": { + "type": "column", + "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + }, + "column_Q8qnXT": { + "type": "column", + "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + }, + "column_zGH463": { + "type": "column", + "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + }, + "column_WqJgR8": { + "type": "column", + "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + } + }, + "block_order": [ + "column_Ktbmi8", + "column_jAmHTG", + "column_cghWLX", + "column_Q8qnXT", + "column_zGH463", + "column_WqJgR8" + ], + "settings": { + "title": "", + "heading_size": "h2", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 5, + "column_alignment": "center", + "background_style": "none", + "button_label": "", + "button_link": "", + "color_scheme": "", + "columns_mobile": "2", + "swipe_on_mobile": false, + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": ["main", "multicolumn_bQcFQg"] } diff --git a/templates/page.newsletter.json b/templates/page.newsletter.json index e69c8126647..de124b892f5 100644 --- a/templates/page.newsletter.json +++ b/templates/page.newsletter.json @@ -1,6 +1,27 @@ { "sections": { - "main": { "type": "main-page", "disabled": true, "settings": { "padding_top": 28, "padding_bottom": 28 } } + "main": { "type": "main-page", "disabled": true, "settings": { "padding_top": 28, "padding_bottom": 28 } }, + "newsletter_EBrPfd": { + "type": "newsletter", + "blocks": { + "heading_PybCQm": { + "type": "heading", + "settings": { "heading": "Iscriviti alla nostra Newsletter", "heading_size": "h1" } + }, + "paragraph_tMmnDn": { + "type": "paragraph", + "settings": { + "text": "

Per iscritti UNICI... Vantaggi MULTIPLI! Entra nella COMMUNITY e avrai subito il 10% di sconto sul primo acquisto.

" + } + }, + "email_form_JM9rKb": { "type": "email_form", "settings": {} } + }, + "block_order": ["heading_PybCQm", "paragraph_tMmnDn", "email_form_JM9rKb"], + "custom_css": [ + ".newsletter__wrapper {border: 1px solid rgba(var(--color-foreground), 0.08); border-radius: 0.5em; margin-top: 80px;}" + ], + "settings": { "color_scheme": "", "full_width": true, "padding_top": 40, "padding_bottom": 52 } + } }, - "order": ["main"] + "order": ["main", "newsletter_EBrPfd"] } From 9d54d71bd5c0749c21f093c07b63f5c1f0f43049 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 09:35:04 +0000 Subject: [PATCH 005/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- config/settings_data.json | 62 +++++++--- sections/footer-group.json | 73 +++++++++--- templates/index.json | 207 ++++++++++++++++++++++++--------- templates/page.brand.json | 60 ++++++++-- templates/page.newsletter.json | 49 ++++++-- 5 files changed, 347 insertions(+), 104 deletions(-) diff --git a/config/settings_data.json b/config/settings_data.json index d41f4806af3..2722f6f6f0c 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -1,8 +1,17 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "current": { - "logo": "shopify://shop_images/logo_2048_x_1152_1_6c488fbe-6cdb-4948-8e1e-d10805c6738b.png", + "logo": "shopify:\/\/shop_images\/logo_2048_x_1152_1_6c488fbe-6cdb-4948-8e1e-d10805c6738b.png", "logo_width": 230, - "favicon": "shopify://shop_images/Ideogramma___Ufficiale.png", + "favicon": "shopify:\/\/shop_images\/Ideogramma___Ufficiale.png", "type_header_font": "roboto_n4", "heading_scale": 100, "type_body_font": "roboto_n4", @@ -100,15 +109,15 @@ "sold_out_badge_color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", "brand_headline": "Lo stile che dà forma alle tue idee", "brand_description": "", - "brand_image": "shopify://shop_images/logo_2048_x_1152_1_6c488fbe-6cdb-4948-8e1e-d10805c6738b.png", + "brand_image": "shopify:\/\/shop_images\/logo_2048_x_1152_1_6c488fbe-6cdb-4948-8e1e-d10805c6738b.png", "brand_image_width": 190, - "social_facebook_link": "https://www.facebook.com/unicoemultiplo/", - "social_instagram_link": "https://www.instagram.com/unicoemultiplo/", - "social_youtube_link": "https://www.youtube.com/@Unicoemultiplo", + "social_facebook_link": "https:\/\/www.facebook.com\/unicoemultiplo\/", + "social_instagram_link": "https:\/\/www.instagram.com\/unicoemultiplo\/", + "social_youtube_link": "https:\/\/www.youtube.com\/@Unicoemultiplo", "social_tiktok_link": "", "social_twitter_link": "", "social_snapchat_link": "", - "social_pinterest_link": "https://mx.pinterest.com/unicoemultiplo/", + "social_pinterest_link": "https:\/\/mx.pinterest.com\/unicoemultiplo\/", "social_tumblr_link": "", "social_vimeo_link": "", "predictive_search_enabled": true, @@ -121,15 +130,28 @@ "cart_drawer_collection": "", "cart_color_scheme": "scheme-1", "sections": { - "main-password-header": { "type": "main-password-header", "settings": { "color_scheme": "scheme-1" } }, - "main-password-footer": { "type": "main-password-footer", "settings": { "color_scheme": "scheme-1" } } + "main-password-header": { + "type": "main-password-header", + "settings": { + "color_scheme": "scheme-1" + } + }, + "main-password-footer": { + "type": "main-password-footer", + "settings": { + "color_scheme": "scheme-1" + } + } }, - "content_for_index": [], + "content_for_index": [ + + ], "blocks": { "16963237191767492405": { - "type": "shopify://apps/whatsapp-button/blocks/app-embed-block/96d80a63-e860-4262-a001-8b82ac4d00e6", + "type": "shopify:\/\/apps\/whatsapp-button\/blocks\/app-embed-block\/96d80a63-e860-4262-a001-8b82ac4d00e6", "disabled": false, - "settings": {} + "settings": { + } } }, "color_schemes": { @@ -379,7 +401,7 @@ "sale_badge_color_scheme": "scheme-4", "sold_out_badge_color_scheme": "scheme-3", "brand_headline": "", - "brand_description": "

", + "brand_description": "

<\/p>", "brand_image_width": 100, "social_twitter_link": "", "social_facebook_link": "", @@ -400,8 +422,18 @@ "cart_drawer_collection": "", "cart_color_scheme": "scheme-1", "sections": { - "main-password-header": { "type": "main-password-header", "settings": { "color_scheme": "scheme-1" } }, - "main-password-footer": { "type": "main-password-footer", "settings": { "color_scheme": "scheme-1" } } + "main-password-header": { + "type": "main-password-header", + "settings": { + "color_scheme": "scheme-1" + } + }, + "main-password-footer": { + "type": "main-password-footer", + "settings": { + "color_scheme": "scheme-1" + } + } } } }, diff --git a/sections/footer-group.json b/sections/footer-group.json index a7235801757..0c3b96aabe9 100644 --- a/sections/footer-group.json +++ b/sections/footer-group.json @@ -1,3 +1,12 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "name": "t:sections.footer.name", "type": "footer", @@ -7,36 +16,69 @@ "blocks": { "heading_J3hWGA": { "type": "heading", - "settings": { "heading": "Iscriviti alla nostra Newsletter", "heading_size": "h1" } + "settings": { + "heading": "Iscriviti alla nostra Newsletter", + "heading_size": "h1" + } }, "paragraph_FUptkU": { "type": "paragraph", "settings": { - "text": "

Per iscritti UNICI...

... Vantaggi multipli! Entra nella COMMUNITY: subito il 10% di sconto sul primo acquisto.

" + "text": "

Per iscritti UNICI...<\/h2>

... Vantaggi multipli!<\/strong> Entra nella COMMUNITY: subito il 10%<\/strong> di sconto sul primo acquisto.<\/p>

<\/p>" } }, - "email_form_pXCaXA": { "type": "email_form", "settings": {} } + "email_form_pXCaXA": { + "type": "email_form", + "settings": { + } + } }, - "block_order": ["heading_J3hWGA", "paragraph_FUptkU", "email_form_pXCaXA"], + "block_order": [ + "heading_J3hWGA", + "paragraph_FUptkU", + "email_form_pXCaXA" + ], "disabled": true, - "custom_css": [], - "settings": { "color_scheme": "scheme-2", "full_width": true, "padding_top": 60, "padding_bottom": 60 } + "custom_css": [ + + ], + "settings": { + "color_scheme": "scheme-2", + "full_width": true, + "padding_top": 60, + "padding_bottom": 60 + } }, "footer": { "type": "footer", "blocks": { - "brand_information_EUx4cC": { "type": "brand_information", "settings": { "show_social": true } }, + "brand_information_EUx4cC": { + "type": "brand_information", + "settings": { + "show_social": true + } + }, "link_list_bqHJzH": { "type": "link_list", - "settings": { "heading": "Customer Service", "menu": "footer" } + "settings": { + "heading": "Customer Service<\/strong>", + "menu": "footer" + } }, "link_list_AArWxN": { "type": "link_list", - "settings": { "heading": "Design e Concept Store", "menu": "design-e-concept-store" } + "settings": { + "heading": "Design e Concept Store<\/strong>", + "menu": "design-e-concept-store" + } }, "feedaty_official_merchant_widget_NUgJYx": { - "type": "shopify://apps/feedaty-official/blocks/merchant-widget/1597c10b-7e15-4dee-9287-4aa2114f0e9c", - "settings": { "merchant_code": "10215169", "data_variant": "200x150-3", "data_id": "selettore1" } + "type": "shopify:\/\/apps\/feedaty-official\/blocks\/merchant-widget\/1597c10b-7e15-4dee-9287-4aa2114f0e9c", + "settings": { + "merchant_code": "10215169", + "data_variant": "200x150-3", + "data_id": "selettore1" + } } }, "block_order": [ @@ -45,7 +87,9 @@ "link_list_AArWxN", "feedaty_official_merchant_widget_NUgJYx" ], - "custom_css": [], + "custom_css": [ + + ], "settings": { "color_scheme": "scheme-2", "newsletter_enable": false, @@ -62,5 +106,8 @@ } } }, - "order": ["newsletter_PqaJTL", "footer"] + "order": [ + "newsletter_PqaJTL", + "footer" + ] } diff --git a/templates/index.json b/templates/index.json index 83c72f14191..d4e68bc005e 100644 --- a/templates/index.json +++ b/templates/index.json @@ -1,3 +1,12 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "multicolumn_rGUHzh": { @@ -6,25 +15,28 @@ "column_4PjnNt": { "type": "column", "settings": { - "image": "shopify://shop_images/Snapinsta.app_449689181_865635138936138_1622082402760830127_n_1080_1.jpg", - "title": "BITOSSI HOME", - "text": "

Piatti Petalo

", + "image": "shopify:\/\/shop_images\/Snapinsta.app_449689181_865635138936138_1622082402760830127_n_1080_1.jpg", + "title": "BITOSSI HOME<\/strong>", + "text": "

Piatti Petalo<\/strong><\/p>", "link_label": "", - "link": "shopify://collections/bitossi-home-petalo-bitossi-home" + "link": "shopify:\/\/collections\/bitossi-home-petalo-bitossi-home" } }, "column_pkHkxr": { "type": "column", "settings": { - "image": "shopify://shop_images/KnIndustrie-bicchieri.webp", - "title": "KNIDUSTRIE", - "text": "

I Bicchieri

", + "image": "shopify:\/\/shop_images\/KnIndustrie-bicchieri.webp", + "title": "KNIDUSTRIE<\/strong>", + "text": "

I Bicchieri<\/strong><\/p>", "link_label": "", "link": "" } } }, - "block_order": ["column_4PjnNt", "column_pkHkxr"], + "block_order": [ + "column_4PjnNt", + "column_pkHkxr" + ], "custom_css": [ ".background-none .multicolumn-card__image-wrapper {margin: unset;}", ".multicolumn-list__item {position: relative;}", @@ -51,26 +63,44 @@ }, "separator_afe6ke": { "type": "separator", - "custom_css": ["hr,.div-separator {margin: 30px 0;}"], - "settings": { "top_spacing": 10, "bottom_spacing": 10, "line_thickness": 1 } + "custom_css": [ + "hr,.div-separator {margin: 30px 0;}" + ], + "settings": { + "top_spacing": 10, + "bottom_spacing": 10, + "line_thickness": 1 + } }, "rich_text_cn9HQ7": { "type": "rich-text", "blocks": { "heading_nXqN4c": { "type": "heading", - "settings": { "heading": "Seletti Magna Graecia", "heading_size": "h1" } + "settings": { + "heading": "Seletti Magna Graecia", + "heading_size": "h1" + } }, "heading_Fiibrj": { "type": "heading", - "settings": { "heading": "La collezione di terracotte che ti conquisterà", "heading_size": "h2" } + "settings": { + "heading": "La collezione di terracotte che ti conquisterà", + "heading_size": "h2" + } }, "text_kY63iq": { "type": "text", - "settings": { "text": "

Un incontro totalmente nuovo conforme e bellezza ispirate alla classicità.

" } + "settings": { + "text": "

Un incontro totalmente nuovo conforme e bellezza ispirate alla classicità.<\/p>" + } } }, - "block_order": ["heading_nXqN4c", "heading_Fiibrj", "text_kY63iq"], + "block_order": [ + "heading_nXqN4c", + "heading_Fiibrj", + "text_kY63iq" + ], "settings": { "desktop_content_position": "center", "content_alignment": "center", @@ -110,24 +140,36 @@ }, "separator_yyJkQg": { "type": "separator", - "custom_css": ["hr,.div-separator {margin: 30px 0;}"], - "settings": { "top_spacing": 5, "bottom_spacing": 5, "line_thickness": 1 } + "custom_css": [ + "hr,.div-separator {margin: 30px 0;}" + ], + "settings": { + "top_spacing": 5, + "bottom_spacing": 5, + "line_thickness": 1 + } }, "rich_text_7MwH7c": { "type": "rich-text", "blocks": { "heading_hwCfYP": { "type": "heading", - "settings": { "heading": "Lo stile che dà forma alle tue idee", "heading_size": "h1" } + "settings": { + "heading": "Lo stile che dà forma alle tue idee", + "heading_size": "h1" + } }, "text_AUrHzV": { "type": "text", "settings": { - "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino: rendi concrete le tue idee!

" + "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino: rendi concrete le tue idee!<\/p>" } } }, - "block_order": ["heading_hwCfYP", "text_AUrHzV"], + "block_order": [ + "heading_hwCfYP", + "text_AUrHzV" + ], "settings": { "desktop_content_position": "center", "content_alignment": "center", @@ -143,29 +185,29 @@ "column_Dc34aY": { "type": "column", "settings": { - "image": "shopify://shop_images/Seletti-cucina-e-tavola.webp", + "image": "shopify:\/\/shop_images\/Seletti-cucina-e-tavola.webp", "title": "", - "text": "

Cucina & Tavola

", + "text": "

Cucina & Tavola<\/a><\/h4>", "link_label": "", - "link": "shopify://collections/cucina-e-tavola" + "link": "shopify:\/\/collections\/cucina-e-tavola" } }, "column_RtQ7KC": { "type": "column", "settings": { - "image": "shopify://shop_images/Arredo-complementi.webp", + "image": "shopify:\/\/shop_images\/Arredo-complementi.webp", "title": "", - "text": "

Arredo & Complementi

", + "text": "

Arredo & Complementi<\/a><\/h4>", "link_label": "", - "link": "shopify://collections/complementi-arredo" + "link": "shopify:\/\/collections\/complementi-arredo" } }, "column_kUiCKr": { "type": "column", "settings": { - "image": "shopify://shop_images/Lifestile-cassa-speaker.webp", + "image": "shopify:\/\/shop_images\/Lifestile-cassa-speaker.webp", "title": "", - "text": "

Lifestyle

", + "text": "

Lifestyle<\/a><\/h4>", "link_label": "", "link": "" } @@ -173,7 +215,7 @@ "column_H9PG3A": { "type": "column", "settings": { - "image": "shopify://shop_images/Untitled_design_-_2024-08-30T103013.767.webp", + "image": "shopify:\/\/shop_images\/Untitled_design_-_2024-08-30T103013.767.webp", "title": "Illuninazione", "text": "", "link_label": "", @@ -183,7 +225,7 @@ "column_mbxQN4": { "type": "column", "settings": { - "image": "shopify://shop_images/Ufficio.webp", + "image": "shopify:\/\/shop_images\/Ufficio.webp", "title": "Ufficio", "text": "", "link_label": "", @@ -193,11 +235,11 @@ "column_7y4mWL": { "type": "column", "settings": { - "image": "shopify://shop_images/Idee-regalo.jpg", + "image": "shopify:\/\/shop_images\/Idee-regalo.jpg", "title": "Idee Regalo", "text": "", "link_label": "", - "link": "/collections/tempo-libero" + "link": "\/collections\/tempo-libero" } } }, @@ -209,7 +251,9 @@ "column_mbxQN4", "column_7y4mWL" ], - "custom_css": [".background-none .multicolumn-card__image-wrapper {margin: unset;}"], + "custom_css": [ + ".background-none .multicolumn-card__image-wrapper {margin: unset;}" + ], "settings": { "title": "", "heading_size": "h2", @@ -229,21 +273,36 @@ }, "separator_3hxJJU": { "type": "separator", - "custom_css": ["hr,.div-separator {margin: 30px 0;}"], - "settings": { "top_spacing": 15, "bottom_spacing": 20, "line_thickness": 1 } + "custom_css": [ + "hr,.div-separator {margin: 30px 0;}" + ], + "settings": { + "top_spacing": 15, + "bottom_spacing": 20, + "line_thickness": 1 + } }, "rich_text_3WWRXG": { "type": "rich-text", "blocks": { - "heading_8zwk4f": { "type": "heading", "settings": { "heading": "I Nostri Brand", "heading_size": "h1" } }, + "heading_8zwk4f": { + "type": "heading", + "settings": { + "heading": "I Nostri Brand", + "heading_size": "h1" + } + }, "text_VRF4TV": { "type": "text", "settings": { - "text": "

Le proposte dei migliori designer italiani e internazionali, le ultime proposte e i classici d'autore. 
Lo stile come non lo hai mai visto!

" + "text": "

Le proposte dei migliori designer italiani e internazionali, le ultime proposte e i classici d'autore. Lo stile come non lo hai mai visto!<\/p>" } } }, - "block_order": ["heading_8zwk4f", "text_VRF4TV"], + "block_order": [ + "heading_8zwk4f", + "text_VRF4TV" + ], "settings": { "desktop_content_position": "center", "content_alignment": "center", @@ -259,7 +318,7 @@ "column_iTHqLj": { "type": "column", "settings": { - "image": "shopify://shop_images/Bitossi.jpg", + "image": "shopify:\/\/shop_images\/Bitossi.jpg", "title": "", "text": "", "link_label": "", @@ -269,7 +328,7 @@ "column_4n44GN": { "type": "column", "settings": { - "image": "shopify://shop_images/Seletti.jpg", + "image": "shopify:\/\/shop_images\/Seletti.jpg", "title": "", "text": "", "link_label": "", @@ -279,7 +338,7 @@ "column_RYybqr": { "type": "column", "settings": { - "image": "shopify://shop_images/Brandantia.jpg", + "image": "shopify:\/\/shop_images\/Brandantia.jpg", "title": "", "text": "", "link_label": "", @@ -289,7 +348,7 @@ "column_UnjJVg": { "type": "column", "settings": { - "image": "shopify://shop_images/Ichendorf.jpg", + "image": "shopify:\/\/shop_images\/Ichendorf.jpg", "title": "", "text": "", "link_label": "", @@ -299,7 +358,7 @@ "column_iHCTrV": { "type": "column", "settings": { - "image": "shopify://shop_images/Millefiori.jpg", + "image": "shopify:\/\/shop_images\/Millefiori.jpg", "title": "", "text": "", "link_label": "", @@ -309,14 +368,22 @@ "column_BntmaF": { "type": "column", "settings": { - "image": "shopify://shop_images/Brandani.jpg", + "image": "shopify:\/\/shop_images\/Brandani.jpg", "title": "", "text": "", "link_label": "", "link": "" } }, - "column_dNExGV": { "type": "column", "settings": { "title": "", "text": "", "link_label": "", "link": "" } } + "column_dNExGV": { + "type": "column", + "settings": { + "title": "", + "text": "", + "link_label": "", + "link": "" + } + } }, "block_order": [ "column_iTHqLj", @@ -327,7 +394,9 @@ "column_BntmaF", "column_dNExGV" ], - "custom_css": [], + "custom_css": [ + + ], "settings": { "title": "", "heading_size": "h1", @@ -351,9 +420,9 @@ "column_8HAwtH": { "type": "column", "settings": { - "image": "shopify://shop_images/spedizione_1.jpg", + "image": "shopify:\/\/shop_images\/spedizione_1.jpg", "title": "CONSEGNA E RESO GRATIS", - "text": "

Per tutti gli ordini da 59,00€

", + "text": "

Per tutti gli ordini da 59,00€<\/p>", "link_label": "", "link": "" } @@ -361,9 +430,9 @@ "column_xaMbin": { "type": "column", "settings": { - "image": "shopify://shop_images/pagamenti_sicuri_2.jpg", + "image": "shopify:\/\/shop_images\/pagamenti_sicuri_2.jpg", "title": "PAGAMENTI 100% SICURI", - "text": "

Carte, PayPal, bonifico, contrassegno

", + "text": "

Carte, PayPal, bonifico, contrassegno<\/p>", "link_label": "", "link": "" } @@ -371,17 +440,23 @@ "column_8HGPgi": { "type": "column", "settings": { - "image": "shopify://shop_images/assistenza_supporto.jpg", + "image": "shopify:\/\/shop_images\/assistenza_supporto.jpg", "title": "ASSISTENZA E SUPPORTO", - "text": "

Chat, telefono, email, Whatsapp

", + "text": "

Chat, telefono, email, Whatsapp<\/p>", "link_label": "", "link": "" } } }, - "block_order": ["column_8HAwtH", "column_xaMbin", "column_8HGPgi"], + "block_order": [ + "column_8HAwtH", + "column_xaMbin", + "column_8HGPgi" + ], "disabled": true, - "custom_css": [".elemento {width: 50%; aspect-ratio: 16 / 9; height: auto;}"], + "custom_css": [ + ".elemento {width: 50%; aspect-ratio: 16 \/ 9; height: auto;}" + ], "settings": { "title": "", "heading_size": "h2", @@ -404,21 +479,37 @@ "blocks": { "heading_7mLhy6": { "type": "heading", - "settings": { "heading": "Iscriviti alla nostra Newsletter", "heading_size": "h1" } + "settings": { + "heading": "Iscriviti alla nostra Newsletter!", + "heading_size": "h1" + } }, "paragraph_7FqTVq": { "type": "paragraph", "settings": { - "text": "

Per iscritti UNICI... Vantaggi MULTIPLI! Entra nella COMMUNITY e avrai subito il 10% di sconto sul primo acquisto.

" + "text": "

Per iscritti UNICI... Vantaggi MULTIPLI! Entra nella COMMUNITY e avrai subito il 10% di sconto<\/span> sul primo acquisto.<\/p>

<\/p>" } }, - "email_form_EtXRTJ": { "type": "email_form", "settings": {} } + "email_form_EtXRTJ": { + "type": "email_form", + "settings": { + } + } }, - "block_order": ["heading_7mLhy6", "paragraph_7FqTVq", "email_form_EtXRTJ"], + "block_order": [ + "heading_7mLhy6", + "paragraph_7FqTVq", + "email_form_EtXRTJ" + ], "custom_css": [ ".newsletter__wrapper {border: 1px solid rgba(var(--color-foreground), 0.08); border-radius: 0.5em; margin-top: 80px;}" ], - "settings": { "color_scheme": "", "full_width": false, "padding_top": 40, "padding_bottom": 52 } + "settings": { + "color_scheme": "", + "full_width": false, + "padding_top": 40, + "padding_bottom": 52 + } } }, "order": [ diff --git a/templates/page.brand.json b/templates/page.brand.json index 1719b687269..2d04e129ef6 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -1,44 +1,79 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { - "main": { "type": "main-page", "settings": { "padding_top": 28, "padding_bottom": 28 } }, + "main": { + "type": "main-page", + "settings": { + "padding_top": 28, + "padding_bottom": 28 + } + }, "multicolumn_bQcFQg": { "type": "multicolumn", "blocks": { "column_Ktbmi8": { "type": "column", "settings": { - "image": "shopify://shop_images/Ab.jpg", + "image": "shopify:\/\/shop_images\/Ab.jpg", "title": "", - "text": "

Ab+Abert

", + "text": "

Ab+Abert<\/h4>", "link_label": "", - "link": "shopify://collections/ab-abert" + "link": "shopify:\/\/collections\/ab-abert" } }, "column_jAmHTG": { "type": "column", "settings": { - "image": "shopify://shop_images/Bitossi_0b488b14-02a4-4329-9977-2f11a8fb7315.jpg", + "image": "shopify:\/\/shop_images\/Bitossi_0b488b14-02a4-4329-9977-2f11a8fb7315.jpg", "title": "", - "text": "

Bitossi Home

", + "text": "

Bitossi Home<\/h4>", "link_label": "", "link": "" } }, "column_cghWLX": { "type": "column", - "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + "settings": { + "title": "Colonna", + "text": "", + "link_label": "", + "link": "" + } }, "column_Q8qnXT": { "type": "column", - "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + "settings": { + "title": "Colonna", + "text": "", + "link_label": "", + "link": "" + } }, "column_zGH463": { "type": "column", - "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + "settings": { + "title": "Colonna", + "text": "", + "link_label": "", + "link": "" + } }, "column_WqJgR8": { "type": "column", - "settings": { "title": "Colonna", "text": "", "link_label": "", "link": "" } + "settings": { + "title": "Colonna", + "text": "", + "link_label": "", + "link": "" + } } }, "block_order": [ @@ -67,5 +102,8 @@ } } }, - "order": ["main", "multicolumn_bQcFQg"] + "order": [ + "main", + "multicolumn_bQcFQg" + ] } diff --git a/templates/page.newsletter.json b/templates/page.newsletter.json index de124b892f5..cf1a6f1a3cf 100644 --- a/templates/page.newsletter.json +++ b/templates/page.newsletter.json @@ -1,27 +1,62 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { - "main": { "type": "main-page", "disabled": true, "settings": { "padding_top": 28, "padding_bottom": 28 } }, + "main": { + "type": "main-page", + "disabled": true, + "settings": { + "padding_top": 28, + "padding_bottom": 28 + } + }, "newsletter_EBrPfd": { "type": "newsletter", "blocks": { "heading_PybCQm": { "type": "heading", - "settings": { "heading": "Iscriviti alla nostra Newsletter", "heading_size": "h1" } + "settings": { + "heading": "Iscriviti alla nostra Newsletter", + "heading_size": "h1" + } }, "paragraph_tMmnDn": { "type": "paragraph", "settings": { - "text": "

Per iscritti UNICI... Vantaggi MULTIPLI! Entra nella COMMUNITY e avrai subito il 10% di sconto sul primo acquisto.

" + "text": "

Per iscritti UNICI... Vantaggi MULTIPLI! Entra nella COMMUNITY e avrai subito il 10% di sconto<\/span> sul primo acquisto.<\/p>" } }, - "email_form_JM9rKb": { "type": "email_form", "settings": {} } + "email_form_JM9rKb": { + "type": "email_form", + "settings": { + } + } }, - "block_order": ["heading_PybCQm", "paragraph_tMmnDn", "email_form_JM9rKb"], + "block_order": [ + "heading_PybCQm", + "paragraph_tMmnDn", + "email_form_JM9rKb" + ], "custom_css": [ ".newsletter__wrapper {border: 1px solid rgba(var(--color-foreground), 0.08); border-radius: 0.5em; margin-top: 80px;}" ], - "settings": { "color_scheme": "", "full_width": true, "padding_top": 40, "padding_bottom": 52 } + "settings": { + "color_scheme": "", + "full_width": true, + "padding_top": 40, + "padding_bottom": 52 + } } }, - "order": ["main", "newsletter_EBrPfd"] + "order": [ + "main", + "newsletter_EBrPfd" + ] } From 80b3e8a6b1500faf35bd17f511b80ba2313b0abc Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 09:36:18 +0000 Subject: [PATCH 006/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index d4e68bc005e..b988ab82e57 100644 --- a/templates/index.json +++ b/templates/index.json @@ -480,7 +480,7 @@ "heading_7mLhy6": { "type": "heading", "settings": { - "heading": "Iscriviti alla nostra Newsletter!", + "heading": "Iscriviti alla nostra Newsletter", "heading_size": "h1" } }, From 429fd5cb6ee10fb1f6c754e03fab4c99f17f8b64 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 09:56:18 +0000 Subject: [PATCH 007/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- layout/theme.liquid | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/layout/theme.liquid b/layout/theme.liquid index 5ac5229e18a..f2a7d0a4d66 100644 --- a/layout/theme.liquid +++ b/layout/theme.liquid @@ -243,13 +243,7 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= height: 100%; } - body - - - - - { + body { display: grid; grid-template-rows: auto auto 1fr auto; grid-template-columns: 100%; @@ -270,6 +264,11 @@ height="0" width="0" style="display:none;visibility:hidden"> } {% endstyle %} + + + + {{ 'base.css' | asset_url | stylesheet_tag }} From 9d23d6a1c95d6149b25f8aa89d612bdb628f353c Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:02:39 +0000 Subject: [PATCH 008/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/header-group.json | 47 ++++++++++++++++++++++++++++++++------ 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/sections/header-group.json b/sections/header-group.json index b1ffde4aed9..0a75d9e75a6 100644 --- a/sections/header-group.json +++ b/sections/header-group.json @@ -1,3 +1,12 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "name": "t:sections.header.name", "type": "header", @@ -7,22 +16,39 @@ "blocks": { "announcement_fjGnw4": { "type": "announcement", - "settings": { "text": "Ti diamo il benvenuto nel nostro negozio", "link": "" } + "settings": { + "text": "Ti diamo il benvenuto nel nostro negozio", + "link": "" + } }, "announcement_aPLqRk": { "type": "announcement", - "settings": { "text": "NEWSLETTER U&M: sconto 10% per Te!", "link": "shopify://pages/iscrizione" } + "settings": { + "text": "NEWSLETTER U&M: sconto 10% per Te!", + "link": "shopify:\/\/pages\/iscrizione" + } }, "announcement_HJUy4B": { "type": "announcement", - "settings": { "text": "Spedizione gratuita da €59", "link": "shopify://policies/shipping-policy" } + "settings": { + "text": "Spedizione gratuita da €59", + "link": "shopify:\/\/policies\/shipping-policy" + } }, "announcement_ktEgez": { "type": "announcement", - "settings": { "text": "Leggi il blog U&M", "link": "https://blog.unicoemultiplo.com/" } + "settings": { + "text": "Leggi il blog U&M", + "link": "https:\/\/blog.unicoemultiplo.com\/" + } } }, - "block_order": ["announcement_fjGnw4", "announcement_aPLqRk", "announcement_HJUy4B", "announcement_ktEgez"], + "block_order": [ + "announcement_fjGnw4", + "announcement_aPLqRk", + "announcement_HJUy4B", + "announcement_ktEgez" + ], "settings": { "color_scheme": "scheme-2", "show_line_separator": false, @@ -35,7 +61,11 @@ }, "header": { "type": "header", - "custom_css": [".mega-menu__list {display: flex; flex-wrap: wrap;}", ".mega-menu__list > li {width: 10em;}"], + "custom_css": [ + ".mega-menu__list {display: flex; flex-wrap: wrap;}", + ".mega-menu__list > li {width: 10em;}", + ".list-menu__item {font-size: 1.2rem;}" + ], "settings": { "logo_position": "top-left", "menu": "main-menu", @@ -54,5 +84,8 @@ } } }, - "order": ["announcement-bar", "header"] + "order": [ + "announcement-bar", + "header" + ] } From 49d58ea75452717d2853198a707c5df5cd6acb56 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:03:52 +0000 Subject: [PATCH 009/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- config/settings_data.json | 11 +++++++++++ sections/header-group.json | 3 ++- templates/index.json | 10 +++++----- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/config/settings_data.json b/config/settings_data.json index 2722f6f6f0c..67f3a04007e 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -242,6 +242,17 @@ "secondary_button_label": "#121212", "shadow": "#121212" } + }, + "scheme-a993bf00-7e7e-44f4-ab72-12da0a52eace": { + "settings": { + "background": "#ffffff", + "background_gradient": "", + "text": "#121212", + "button": "#ffffff", + "button_label": "#121212", + "secondary_button_label": "#ffffff", + "shadow": "#ffffff" + } } } }, diff --git a/sections/header-group.json b/sections/header-group.json index 0a75d9e75a6..8f0d9a88d4d 100644 --- a/sections/header-group.json +++ b/sections/header-group.json @@ -64,7 +64,8 @@ "custom_css": [ ".mega-menu__list {display: flex; flex-wrap: wrap;}", ".mega-menu__list > li {width: 10em;}", - ".list-menu__item {font-size: 1.2rem;}" + ".list-menu__item {font-size: 1.2rem;}", + ".list-menu__item .icon-caret {top: calc(50% - .4rem);}" ], "settings": { "logo_position": "top-left", diff --git a/templates/index.json b/templates/index.json index b988ab82e57..a845c5438a7 100644 --- a/templates/index.json +++ b/templates/index.json @@ -403,14 +403,14 @@ "image_width": "full", "image_ratio": "square", "columns_desktop": 6, - "column_alignment": "left", + "column_alignment": "center", "background_style": "none", - "button_label": "", - "button_link": "", - "color_scheme": "", + "button_label": "Vedi tutti i Brand →", + "button_link": "shopify:\/\/pages\/i-nostri-brand", + "color_scheme": "scheme-a993bf00-7e7e-44f4-ab72-12da0a52eace", "columns_mobile": "2", "swipe_on_mobile": true, - "padding_top": 40, + "padding_top": 44, "padding_bottom": 0 } }, From b42d768638fc992082283e1d92191de11ae32b63 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:04:23 +0000 Subject: [PATCH 010/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- config/settings_data.json | 11 ----------- sections/header-group.json | 4 ++-- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/config/settings_data.json b/config/settings_data.json index 67f3a04007e..2722f6f6f0c 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -242,17 +242,6 @@ "secondary_button_label": "#121212", "shadow": "#121212" } - }, - "scheme-a993bf00-7e7e-44f4-ab72-12da0a52eace": { - "settings": { - "background": "#ffffff", - "background_gradient": "", - "text": "#121212", - "button": "#ffffff", - "button_label": "#121212", - "secondary_button_label": "#ffffff", - "shadow": "#ffffff" - } } } }, diff --git a/sections/header-group.json b/sections/header-group.json index 8f0d9a88d4d..af5bd7ff219 100644 --- a/sections/header-group.json +++ b/sections/header-group.json @@ -64,8 +64,8 @@ "custom_css": [ ".mega-menu__list {display: flex; flex-wrap: wrap;}", ".mega-menu__list > li {width: 10em;}", - ".list-menu__item {font-size: 1.2rem;}", - ".list-menu__item .icon-caret {top: calc(50% - .4rem);}" + ".list-menu__item {font-size: 1.3rem;}", + ".list-menu__item .icon-caret {top: calc(50% - 0.4rem);}" ], "settings": { "logo_position": "top-left", From 783bce3f70e0e6445f07fb8860c1daa4c30f9b14 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:16:56 +0000 Subject: [PATCH 011/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index a845c5438a7..f662b570cd8 100644 --- a/templates/index.json +++ b/templates/index.json @@ -217,9 +217,9 @@ "settings": { "image": "shopify:\/\/shop_images\/Untitled_design_-_2024-08-30T103013.767.webp", "title": "Illuninazione", - "text": "", + "text": "

Illuninazione<\/h4>", "link_label": "", - "link": "" + "link": "shopify:\/\/collections\/illuminazione" } }, "column_mbxQN4": { From e0cb8240aea4716b66c563a4cf0f473c1201d847 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:18:53 +0000 Subject: [PATCH 012/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/index.json b/templates/index.json index f662b570cd8..d953e1d3994 100644 --- a/templates/index.json +++ b/templates/index.json @@ -216,8 +216,8 @@ "type": "column", "settings": { "image": "shopify:\/\/shop_images\/Untitled_design_-_2024-08-30T103013.767.webp", - "title": "Illuninazione", - "text": "

Illuninazione<\/h4>", + "title": "", + "text": "

Illuninazione<\/a><\/h4>", "link_label": "", "link": "shopify:\/\/collections\/illuminazione" } @@ -226,8 +226,8 @@ "type": "column", "settings": { "image": "shopify:\/\/shop_images\/Ufficio.webp", - "title": "Ufficio", - "text": "", + "title": "", + "text": "

Ufficio<\/a><\/h4>", "link_label": "", "link": "" } @@ -236,8 +236,8 @@ "type": "column", "settings": { "image": "shopify:\/\/shop_images\/Idee-regalo.jpg", - "title": "Idee Regalo", - "text": "", + "title": "", + "text": "

Idee Regalo<\/a><\/h4>", "link_label": "", "link": "\/collections\/tempo-libero" } From 370a9506ae93e7e184f86857884dc58ff5d6f4cc Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:21:50 +0000 Subject: [PATCH 013/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- config/settings_data.json | 11 +++++++++++ templates/index.json | 30 +++++++++++++++++++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/config/settings_data.json b/config/settings_data.json index 2722f6f6f0c..52774859610 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -242,6 +242,17 @@ "secondary_button_label": "#121212", "shadow": "#121212" } + }, + "scheme-934f4db6-65d6-4f16-a648-b72cb007f849": { + "settings": { + "background": "#ffffff", + "background_gradient": "", + "text": "#121212", + "button": "#ffffff", + "button_label": "#121212", + "secondary_button_label": "#ffffff", + "shadow": "#ffffff" + } } } }, diff --git a/templates/index.json b/templates/index.json index d953e1d3994..b3d93dc5f18 100644 --- a/templates/index.json +++ b/templates/index.json @@ -405,7 +405,7 @@ "columns_desktop": 6, "column_alignment": "center", "background_style": "none", - "button_label": "Vedi tutti i Brand →", + "button_label": "", "button_link": "shopify:\/\/pages\/i-nostri-brand", "color_scheme": "scheme-a993bf00-7e7e-44f4-ab72-12da0a52eace", "columns_mobile": "2", @@ -414,6 +414,33 @@ "padding_bottom": 0 } }, + "rich_text_fjc6N9": { + "type": "rich-text", + "blocks": { + "button_jicTVi": { + "type": "button", + "settings": { + "button_label": "Vedi tutti i Brand →", + "button_link": "shopify:\/\/pages\/i-nostri-brand", + "button_style_secondary": false, + "button_label_2": "", + "button_link_2": "", + "button_style_secondary_2": false + } + } + }, + "block_order": [ + "button_jicTVi" + ], + "settings": { + "desktop_content_position": "center", + "content_alignment": "center", + "color_scheme": "scheme-934f4db6-65d6-4f16-a648-b72cb007f849", + "full_width": true, + "padding_top": 0, + "padding_bottom": 0 + } + }, "multicolumn_mrQQRJ": { "type": "multicolumn", "blocks": { @@ -523,6 +550,7 @@ "separator_3hxJJU", "rich_text_3WWRXG", "multicolumn_w64iw4", + "rich_text_fjc6N9", "multicolumn_mrQQRJ", "newsletter_6i9tEi" ] From e4bfdc488e8427c760a4404c04b057128c6ebfee Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:29:06 +0000 Subject: [PATCH 014/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 50 +++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index 2d04e129ef6..c6925a2156c 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -19,70 +19,74 @@ "multicolumn_bQcFQg": { "type": "multicolumn", "blocks": { - "column_Ktbmi8": { + "column_n8gNLa": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/Ab.jpg", + "image": "shopify:\/\/shop_images\/Ab.webp", "title": "", - "text": "

Ab+Abert<\/h4>", + "text": "

Ab+Abert<\/a><\/h4>", "link_label": "", "link": "shopify:\/\/collections\/ab-abert" } }, - "column_jAmHTG": { + "column_i6hFa3": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/Bitossi_0b488b14-02a4-4329-9977-2f11a8fb7315.jpg", + "image": "shopify:\/\/shop_images\/Atmosphere.webp", "title": "", - "text": "

Bitossi Home<\/h4>", + "text": "

Atmosphere<\/h4>", "link_label": "", "link": "" } }, - "column_cghWLX": { + "column_jAmHTG": { "type": "column", "settings": { - "title": "Colonna", - "text": "", + "image": "shopify:\/\/shop_images\/Bitossi.webp", + "title": "", + "text": "

Bitossi Home<\/a><\/h4>", "link_label": "", "link": "" } }, - "column_Q8qnXT": { + "column_pBQePY": { "type": "column", "settings": { - "title": "Colonna", - "text": "", + "image": "shopify:\/\/shop_images\/Brabantia.webp", + "title": "", + "text": "

Brabantia<\/a><\/h4>", "link_label": "", "link": "" } }, - "column_zGH463": { + "column_mDAKCe": { "type": "column", "settings": { - "title": "Colonna", - "text": "", + "image": "shopify:\/\/shop_images\/Brandani.webp", + "title": "", + "text": "

Brandani<\/a><\/h4>", "link_label": "", "link": "" } }, - "column_WqJgR8": { + "column_bPjjtb": { "type": "column", "settings": { - "title": "Colonna", - "text": "", + "image": "shopify:\/\/shop_images\/CrashBag.webp", + "title": "", + "text": "

Crash Baggage<\/a><\/h4>", "link_label": "", "link": "" } } }, "block_order": [ - "column_Ktbmi8", + "column_n8gNLa", + "column_i6hFa3", "column_jAmHTG", - "column_cghWLX", - "column_Q8qnXT", - "column_zGH463", - "column_WqJgR8" + "column_pBQePY", + "column_mDAKCe", + "column_bPjjtb" ], "settings": { "title": "", From e28d107c5f0074130806f5a853fca16dad577139 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:37:53 +0000 Subject: [PATCH 015/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 90 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 89 insertions(+), 1 deletion(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index c6925a2156c..26a6e0ddd90 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -78,6 +78,86 @@ "link_label": "", "link": "" } + }, + "column_fYAzhe": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Fioriraungiaridino.webp", + "title": "", + "text": "

Fiorirà un giardino<\/a><\/h4>", + "link_label": "", + "link": "" + } + }, + "column_ActrqL": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/fisura.webp", + "title": "", + "text": "

Fisura<\/h4>", + "link_label": "", + "link": "" + } + }, + "column_8DWGcQ": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Flaminugueo.webp", + "title": "", + "text": "

Flamingueo<\/h4>", + "link_label": "", + "link": "" + } + }, + "column_kaEgcV": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Ghisanativa.webp", + "title": "", + "text": "

Ghisanativa<\/a><\/h4>", + "link_label": "", + "link": "" + } + }, + "column_7kaFhY": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Guzzerie.webp", + "title": "", + "text": "

Guzzerie<\/a><\/h4>", + "link_label": "", + "link": "" + } + }, + "column_ABjgwE": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/hoff.webp", + "title": "", + "text": "

Hoff Interieur<\/a><\/h4>", + "link_label": "", + "link": "" + } + }, + "column_tLCiBW": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Ichendorf.webp", + "title": "", + "text": "

Ichendorf<\/a><\/h4>", + "link_label": "", + "link": "" + } + }, + "column_Hhh9KY": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Josephjoseph.webp", + "title": "", + "text": "

Joseph Joseph<\/a><\/p>", + "link_label": "", + "link": "" + } } }, "block_order": [ @@ -86,7 +166,15 @@ "column_jAmHTG", "column_pBQePY", "column_mDAKCe", - "column_bPjjtb" + "column_bPjjtb", + "column_fYAzhe", + "column_ActrqL", + "column_8DWGcQ", + "column_kaEgcV", + "column_7kaFhY", + "column_ABjgwE", + "column_tLCiBW", + "column_Hhh9KY" ], "settings": { "title": "", From 148add53b5e79d44d6e025ea11211613f1886c28 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:41:11 +0000 Subject: [PATCH 016/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index 26a6e0ddd90..e8a130a5563 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -158,6 +158,16 @@ "link_label": "", "link": "" } + }, + "column_XQ9JEN": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Knidustrie.webp", + "title": "", + "text": "

KnIndustrie<\/a><\/p>", + "link_label": "", + "link": "" + } } }, "block_order": [ @@ -174,7 +184,8 @@ "column_7kaFhY", "column_ABjgwE", "column_tLCiBW", - "column_Hhh9KY" + "column_Hhh9KY", + "column_XQ9JEN" ], "settings": { "title": "", From 3135f8326dc80e481a07ec44092eb9dc7773a74d Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:48:53 +0000 Subject: [PATCH 017/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- templates/page.brand.json | 68 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 68 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index b3d93dc5f18..fd591ea30e1 100644 --- a/templates/index.json +++ b/templates/index.json @@ -54,7 +54,7 @@ "background_style": "none", "button_label": "", "button_link": "", - "color_scheme": "", + "color_scheme": "scheme-934f4db6-65d6-4f16-a648-b72cb007f849", "columns_mobile": "1", "swipe_on_mobile": false, "padding_top": 80, diff --git a/templates/page.brand.json b/templates/page.brand.json index e8a130a5563..7aac8f0ff8e 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -168,6 +168,66 @@ "link_label": "", "link": "" } + }, + "column_qxeMLV": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Kriptonite.webp", + "title": "", + "text": "

Kriptonite<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_Rb8Pd9": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/lapiacentina.webp", + "title": "", + "text": "

La Piacentina<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_wyhtnL": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Lexon.webp", + "title": "", + "text": "

Lexon<\/p>", + "link_label": "", + "link": "" + } + }, + "column_7GbWNR": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Marinette.webp", + "title": "", + "text": "

Marinette<\/p>", + "link_label": "", + "link": "" + } + }, + "column_JQe8X6": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Miho.webp", + "title": "", + "text": "

Miho<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_n6Wc68": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Miho.webp", + "title": "", + "text": "

Miho<\/a><\/p>", + "link_label": "", + "link": "" + } } }, "block_order": [ @@ -185,7 +245,13 @@ "column_ABjgwE", "column_tLCiBW", "column_Hhh9KY", - "column_XQ9JEN" + "column_XQ9JEN", + "column_qxeMLV", + "column_Rb8Pd9", + "column_wyhtnL", + "column_7GbWNR", + "column_JQe8X6", + "column_n6Wc68" ], "settings": { "title": "", From 99ffe9a0afdc7c6f7001d3c1d9a2071e5c921407 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:52:23 +0000 Subject: [PATCH 018/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index 7aac8f0ff8e..7e7909f284e 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -222,9 +222,29 @@ "column_n6Wc68": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/Miho.webp", + "image": "shopify:\/\/shop_images\/millefiori.webp", "title": "", - "text": "

Miho<\/a><\/p>", + "text": "

MiIllefiori<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_EK7y9M": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/millefiori.webp", + "title": "", + "text": "

MiIllefiori<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_6pVG3M": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/millefiori.webp", + "title": "", + "text": "

MiIllefiori<\/a><\/p>", "link_label": "", "link": "" } @@ -251,7 +271,9 @@ "column_wyhtnL", "column_7GbWNR", "column_JQe8X6", - "column_n6Wc68" + "column_n6Wc68", + "column_EK7y9M", + "column_6pVG3M" ], "settings": { "title": "", From 68f8630fb6a984933a7e7b035be033856d93e376 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:54:06 +0000 Subject: [PATCH 019/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index 7e7909f284e..dbe419bb4ce 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -232,9 +232,9 @@ "column_EK7y9M": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/millefiori.webp", + "image": "shopify:\/\/shop_images\/Nio.webp", "title": "", - "text": "

MiIllefiori<\/a><\/p>", + "text": "

NIO<\/a><\/p>", "link_label": "", "link": "" } @@ -242,9 +242,19 @@ "column_6pVG3M": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/millefiori.webp", + "image": "shopify:\/\/shop_images\/Qualy.webp", "title": "", - "text": "

MiIllefiori<\/a><\/p>", + "text": "

Qualy<\/p>", + "link_label": "", + "link": "" + } + }, + "column_p6Tgz4": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Reisenthel.webp", + "title": "", + "text": "

Reisenthel<\/a><\/p>", "link_label": "", "link": "" } @@ -273,7 +283,8 @@ "column_JQe8X6", "column_n6Wc68", "column_EK7y9M", - "column_6pVG3M" + "column_6pVG3M", + "column_p6Tgz4" ], "settings": { "title": "", From 17c3d2f5ec8f052ab567383dea134e796ef938de Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:57:56 +0000 Subject: [PATCH 020/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 79 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 78 insertions(+), 1 deletion(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index dbe419bb4ce..31f063af2fc 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -258,6 +258,76 @@ "link_label": "", "link": "" } + }, + "column_fVEeYC": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Rivsalt.webp", + "title": "", + "text": "

Rivsalt<\/p>", + "link_label": "", + "link": "" + } + }, + "column_zrLjgy": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Rollink-valigie.webp", + "title": "", + "text": "

Rollink<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_jj7XrB": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Salvadoriarte.webp", + "title": "", + "text": "

Salvadori Arte<\/p>", + "link_label": "", + "link": "" + } + }, + "column_HdgBkB": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Seletti.webp", + "title": "", + "text": "

Seletti<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_HjME7k": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Seletti.webp", + "title": "", + "text": "

Seletti<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_yh4FbF": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Seletti.webp", + "title": "", + "text": "

Seletti<\/a><\/p>", + "link_label": "", + "link": "" + } + }, + "column_CPXaV4": { + "type": "column", + "settings": { + "image": "shopify:\/\/shop_images\/Seletti.webp", + "title": "", + "text": "

Seletti<\/a><\/p>", + "link_label": "", + "link": "" + } } }, "block_order": [ @@ -284,7 +354,14 @@ "column_n6Wc68", "column_EK7y9M", "column_6pVG3M", - "column_p6Tgz4" + "column_p6Tgz4", + "column_fVEeYC", + "column_zrLjgy", + "column_jj7XrB", + "column_HdgBkB", + "column_HjME7k", + "column_yh4FbF", + "column_CPXaV4" ], "settings": { "title": "", From 8e393d270ff5e91c26b67a49e56afd61e2603dcf Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:00:36 +0000 Subject: [PATCH 021/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index 31f063af2fc..4244d1789cb 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -302,9 +302,9 @@ "column_HjME7k": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/Seletti.webp", + "image": "shopify:\/\/shop_images\/Snippers.webp", "title": "", - "text": "

Seletti<\/a><\/p>", + "text": "

Snippers<\/a><\/p>", "link_label": "", "link": "" } @@ -312,9 +312,9 @@ "column_yh4FbF": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/Seletti.webp", + "image": "shopify:\/\/shop_images\/Superstuff.webp", "title": "", - "text": "

Seletti<\/a><\/p>", + "text": "

Superstuff<\/p>", "link_label": "", "link": "" } @@ -322,9 +322,9 @@ "column_CPXaV4": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/Seletti.webp", + "image": "shopify:\/\/shop_images\/Vanillafly.webp", "title": "", - "text": "

Seletti<\/a><\/p>", + "text": "

Vanilla Fly<\/a><\/p>", "link_label": "", "link": "" } From 0492897dbbbd603ac19c6e6008a87502a39b9e47 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:05:27 +0000 Subject: [PATCH 022/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index fd591ea30e1..6d2a1cc2b4d 100644 --- a/templates/index.json +++ b/templates/index.json @@ -217,7 +217,7 @@ "settings": { "image": "shopify:\/\/shop_images\/Untitled_design_-_2024-08-30T103013.767.webp", "title": "", - "text": "

Illuninazione<\/a><\/h4>", + "text": "

Illuminazione<\/a><\/h4>", "link_label": "", "link": "shopify:\/\/collections\/illuminazione" } From 2b818daa74d1331960688d10365c4cc07bd9d578 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:11:23 +0000 Subject: [PATCH 023/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index 6d2a1cc2b4d..c7bd7788530 100644 --- a/templates/index.json +++ b/templates/index.json @@ -162,7 +162,7 @@ "text_AUrHzV": { "type": "text", "settings": { - "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino: rendi concrete le tue idee!<\/p>" + "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino, idee regalo: rendi concrete le tue idee!<\/p>" } } }, From ad62cc571fffb5753f3b8d6cf46a5d80dbc6e097 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:11:45 +0000 Subject: [PATCH 024/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index c7bd7788530..b209b7bb0fd 100644 --- a/templates/index.json +++ b/templates/index.json @@ -162,7 +162,7 @@ "text_AUrHzV": { "type": "text", "settings": { - "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino, idee regalo: rendi concrete le tue idee!<\/p>" + "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino, idee regalo: <\/p>

rendi concrete le tue idee!<\/p>" } } }, From e93f84da689778b668245f99148ed1c5589baa71 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:12:09 +0000 Subject: [PATCH 025/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index b209b7bb0fd..c7bd7788530 100644 --- a/templates/index.json +++ b/templates/index.json @@ -162,7 +162,7 @@ "text_AUrHzV": { "type": "text", "settings": { - "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino, idee regalo: <\/p>

rendi concrete le tue idee!<\/p>" + "text": "

Unico & Multiplo è idee regalo, oggetti, articoli per esprimere il tuo stile. Dagli accessori per la tavola e la cucina alle proposte per il tempo libero, dalle lampade all'arredo giardino, idee regalo: rendi concrete le tue idee!<\/p>" } } }, From 2a12708383c2fd1344646385bba1522e54277fc3 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:13:29 +0000 Subject: [PATCH 026/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index c7bd7788530..f337e290dad 100644 --- a/templates/index.json +++ b/templates/index.json @@ -17,7 +17,7 @@ "settings": { "image": "shopify:\/\/shop_images\/Snapinsta.app_449689181_865635138936138_1622082402760830127_n_1080_1.jpg", "title": "BITOSSI HOME<\/strong>", - "text": "

Piatti Petalo<\/strong><\/p>", + "text": "

Piatti Petalo<\/strong><\/a><\/p>", "link_label": "", "link": "shopify:\/\/collections\/bitossi-home-petalo-bitossi-home" } @@ -27,7 +27,7 @@ "settings": { "image": "shopify:\/\/shop_images\/KnIndustrie-bicchieri.webp", "title": "KNIDUSTRIE<\/strong>", - "text": "

I Bicchieri<\/strong><\/p>", + "text": "

I Bicchieri<\/strong><\/a><\/p>", "link_label": "", "link": "" } From 798d18b93084ea97f5ab18910affeab5ec6757cc Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:43:58 +0000 Subject: [PATCH 027/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-product.liquid | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/sections/main-product.liquid b/sections/main-product.liquid index 79f7eeaa37c..bf1470e317a 100644 --- a/sections/main-product.liquid +++ b/sections/main-product.liquid @@ -89,8 +89,16 @@ {%- case block.type -%} {%- when '@app' -%} {% render block %} + {%- when 'qty_disclaimer' -%} +

{%- when 'variant_sku' -%} -
+
{% if product.selected_or_first_available_variant.sku != blank %}

{{ product.selected_or_first_available_variant.sku }}

{% endif %} @@ -739,10 +747,16 @@ { "type": "@app" }, + // Custom quantity disclaimer block. + { + "type": "qty_disclaimer", + "name": "Quantity disclaimer", + "limit": 1 + }, // Custom Variant SKU block. { "type": "variant_sku", - "name": "⚡️ Variant SKU", + "name": "Variant SKU", "limit": 1 }, { From 8021a09a38dbb977e8a16599df6eb0f649bf44dd Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:44:48 +0000 Subject: [PATCH 028/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/product.json | 78 +++++++++++++++++++++++++++++++++++------- 1 file changed, 66 insertions(+), 12 deletions(-) diff --git a/templates/product.json b/templates/product.json index fea78282bde..2e7b3052792 100644 --- a/templates/product.json +++ b/templates/product.json @@ -1,3 +1,12 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "main": { @@ -10,29 +19,69 @@ "text_style": "subtitle" } }, - "title": { "type": "title", "settings": {} }, - "variant_sku_BLBrqe": { "type": "variant_sku", "settings": {} }, - "price_XLK3Aj": { "type": "price", "settings": {} }, + "title": { + "type": "title", + "settings": { + } + }, + "variant_sku_BLBrqe": { + "type": "variant_sku", + "settings": { + } + }, + "qty_disclaimer_6icb8M": { + "type": "qty_disclaimer", + "settings": { + } + }, + "price_XLK3Aj": { + "type": "price", + "settings": { + } + }, "custom_liquid_tm8pXP": { "type": "custom_liquid", - "settings": { "custom_liquid": "{{ product.metafields.custom.short_description }}" } + "settings": { + "custom_liquid": "{{ product.metafields.custom.short_description }}" + } }, "variant_picker": { "type": "variant_picker", - "settings": { "picker_type": "dropdown", "swatch_shape": "circle" } + "settings": { + "picker_type": "dropdown", + "swatch_shape": "circle" + } + }, + "quantity_selector": { + "type": "quantity_selector", + "settings": { + } }, - "quantity_selector": { "type": "quantity_selector", "settings": {} }, "buy_buttons": { "type": "buy_buttons", - "settings": { "show_dynamic_checkout": true, "show_gift_card_recipient": false } + "settings": { + "show_dynamic_checkout": true, + "show_gift_card_recipient": false + } + }, + "sku_C4aTJC": { + "type": "sku", + "disabled": true, + "settings": { + "text_style": "body" + } + }, + "description": { + "type": "description", + "disabled": true, + "settings": { + } }, - "sku_C4aTJC": { "type": "sku", "disabled": true, "settings": { "text_style": "body" } }, - "description": { "type": "description", "disabled": true, "settings": {} }, "custom_liquid_zVHD4U": { "type": "custom_liquid", "disabled": true, "settings": { - "custom_liquid": "{% for metafield in product.metafields.custom %}\n

\n {{ metafield[0] }}: \n {{ metafield[1] | json }}\n

\n{% endfor %}" + "custom_liquid": "{% for metafield in product.metafields.custom %}\n

\n {{ metafield[0] }}:<\/strong> \n {{ metafield[1] | json }}\n <\/p>\n{% endfor %}" } } }, @@ -40,6 +89,7 @@ "text_Fn8rie", "title", "variant_sku_BLBrqe", + "qty_disclaimer_6icb8M", "price_XLK3Aj", "custom_liquid_tm8pXP", "variant_picker", @@ -68,7 +118,7 @@ "custom_liquid_q83gja": { "type": "custom-liquid", "settings": { - "custom_liquid": "

\n
\n

Descrizione

\n{{ product.content }}\n
\n
", + "custom_liquid": "
\n
\n

Descrizione<\/h2>\n{{ product.content }}\n<\/div>\n<\/section>", "color_scheme": "", "padding_top": 40, "padding_bottom": 52 @@ -93,5 +143,9 @@ } } }, - "order": ["main", "custom_liquid_q83gja", "related-products"] + "order": [ + "main", + "custom_liquid_q83gja", + "related-products" + ] } From ea0323fbd6633d6b8e6c1e7af22f923692cefdfa Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:47:40 +0000 Subject: [PATCH 029/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-product.liquid | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sections/main-product.liquid b/sections/main-product.liquid index bf1470e317a..80aa618ae37 100644 --- a/sections/main-product.liquid +++ b/sections/main-product.liquid @@ -93,7 +93,11 @@
{% if product.selected_or_first_available_variant.inventory_quantity <= 0 %} {% if product.metafields.custom.banner-spedizione-in-gg != blank %} -

Spedito in {{ product.metafields.custom.banner-spedizione-in-gg }} giorni

+ {% assign days_to_add = product.metafields.custom.banner-spedizione-in-gg | plus: 0 %} + {% assign seconds_to_add = days_to_add | times: 86400 %} + {% assign future_date = 'now' | date: '%s' | plus: seconds_to_add | date: '%Y-%m-%d' %} + +

Spedito dopo il {{ future_date }}

{% endif %} {% endif %}
From 74dfd297fb8ab7cd3e6a8436f91cc7ac848be11a Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:48:22 +0000 Subject: [PATCH 030/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-product.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/main-product.liquid b/sections/main-product.liquid index 80aa618ae37..9eb0480e296 100644 --- a/sections/main-product.liquid +++ b/sections/main-product.liquid @@ -95,7 +95,7 @@ {% if product.metafields.custom.banner-spedizione-in-gg != blank %} {% assign days_to_add = product.metafields.custom.banner-spedizione-in-gg | plus: 0 %} {% assign seconds_to_add = days_to_add | times: 86400 %} - {% assign future_date = 'now' | date: '%s' | plus: seconds_to_add | date: '%Y-%m-%d' %} + {% assign future_date = 'now' | date: '%s' | plus: seconds_to_add | date: '%d/%m/%Y' %}

Spedito dopo il {{ future_date }}

{% endif %} From db91ec7c5cf3b1de554a777fa56f065a0af14fc2 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:54:22 +0000 Subject: [PATCH 031/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-product.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/main-product.liquid b/sections/main-product.liquid index 9eb0480e296..b7a77d90a08 100644 --- a/sections/main-product.liquid +++ b/sections/main-product.liquid @@ -90,7 +90,7 @@ {%- when '@app' -%} {% render block %} {%- when 'qty_disclaimer' -%} -
+
{% if product.selected_or_first_available_variant.inventory_quantity <= 0 %} {% if product.metafields.custom.banner-spedizione-in-gg != blank %} {% assign days_to_add = product.metafields.custom.banner-spedizione-in-gg | plus: 0 %} From ac94007eafbe61c641443d3ca4cacb3893e67ece Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 13:00:42 +0000 Subject: [PATCH 032/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/product.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/templates/product.json b/templates/product.json index 2e7b3052792..c3e231a1d2d 100644 --- a/templates/product.json +++ b/templates/product.json @@ -29,11 +29,6 @@ "settings": { } }, - "qty_disclaimer_6icb8M": { - "type": "qty_disclaimer", - "settings": { - } - }, "price_XLK3Aj": { "type": "price", "settings": { @@ -45,6 +40,11 @@ "custom_liquid": "{{ product.metafields.custom.short_description }}" } }, + "qty_disclaimer_6icb8M": { + "type": "qty_disclaimer", + "settings": { + } + }, "variant_picker": { "type": "variant_picker", "settings": { @@ -89,9 +89,9 @@ "text_Fn8rie", "title", "variant_sku_BLBrqe", - "qty_disclaimer_6icb8M", "price_XLK3Aj", "custom_liquid_tm8pXP", + "qty_disclaimer_6icb8M", "variant_picker", "quantity_selector", "buy_buttons", @@ -99,6 +99,9 @@ "description", "custom_liquid_zVHD4U" ], + "custom_css": [ + ".qty-disclaimer {text-decoration: underline;}" + ], "settings": { "enable_sticky_info": true, "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", From 08a79bc7a42b46e884aaf3125ad9e5c223120727 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 14:52:45 +0000 Subject: [PATCH 033/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index f337e290dad..1d1740f3b65 100644 --- a/templates/index.json +++ b/templates/index.json @@ -260,7 +260,7 @@ "image_width": "full", "image_ratio": "portrait", "columns_desktop": 6, - "column_alignment": "center", + "column_alignment": "left", "background_style": "none", "button_label": "", "button_link": "", From 926a309e6fa5a99160d6d47cba246f915a710992 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 14:53:25 +0000 Subject: [PATCH 034/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index 1d1740f3b65..ecc1450fdaa 100644 --- a/templates/index.json +++ b/templates/index.json @@ -252,7 +252,8 @@ "column_7y4mWL" ], "custom_css": [ - ".background-none .multicolumn-card__image-wrapper {margin: unset;}" + ".background-none .multicolumn-card__image-wrapper {margin: unset;}", + ".multicolumn-card__info {padding-left: 0px;}" ], "settings": { "title": "", From 6afaf33baf7afbe920ba236dfd6626254fc50c5f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 14:54:10 +0000 Subject: [PATCH 035/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/templates/index.json b/templates/index.json index ecc1450fdaa..a2fefc0c742 100644 --- a/templates/index.json +++ b/templates/index.json @@ -252,8 +252,7 @@ "column_7y4mWL" ], "custom_css": [ - ".background-none .multicolumn-card__image-wrapper {margin: unset;}", - ".multicolumn-card__info {padding-left: 0px;}" + ".background-none .multicolumn-card__image-wrapper {margin: unset;" ], "settings": { "title": "", @@ -261,7 +260,7 @@ "image_width": "full", "image_ratio": "portrait", "columns_desktop": 6, - "column_alignment": "left", + "column_alignment": "center", "background_style": "none", "button_label": "", "button_link": "", From 79900beb578ac5faad2104c9a3f27690f5c09871 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 14:56:53 +0000 Subject: [PATCH 036/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index a2fefc0c742..f4223371162 100644 --- a/templates/index.json +++ b/templates/index.json @@ -41,8 +41,9 @@ ".background-none .multicolumn-card__image-wrapper {margin: unset;}", ".multicolumn-list__item {position: relative;}", ".multicolumn-card__info {position: absolute; top: 0em; left: 2em;}", - ".multicolumn-card__info h3 {color: #fff; font-size: 2em;}", - ".multicolumn-card__info p {color: #fff;}" + ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em;}", + ".multicolumn-card__info p {color: rgb(var(--color-background));}", + ".multicolumn-card__info>:nth-child(2) {margin-top: 0em;}" ], "settings": { "title": "", From b1a599463525233ef4012140551f71097efbb066 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 14:59:04 +0000 Subject: [PATCH 037/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/index.json b/templates/index.json index f4223371162..c0439e44dff 100644 --- a/templates/index.json +++ b/templates/index.json @@ -41,9 +41,9 @@ ".background-none .multicolumn-card__image-wrapper {margin: unset;}", ".multicolumn-list__item {position: relative;}", ".multicolumn-card__info {position: absolute; top: 0em; left: 2em;}", - ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em;}", - ".multicolumn-card__info p {color: rgb(var(--color-background));}", - ".multicolumn-card__info>:nth-child(2) {margin-top: 0em;}" + ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em; text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.5);}", + ".multicolumn-card__info p {color: rgb(var(--color-background)); text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.5);}", + ".multicolumn-card__info > :nth-child(2) {margin-top: 0em;}" ], "settings": { "title": "", From 8cafa73fe36af3a1f33c7aefa2a7e9e46717bfe9 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 14:59:34 +0000 Subject: [PATCH 038/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index c0439e44dff..da5d38a0d24 100644 --- a/templates/index.json +++ b/templates/index.json @@ -41,8 +41,8 @@ ".background-none .multicolumn-card__image-wrapper {margin: unset;}", ".multicolumn-list__item {position: relative;}", ".multicolumn-card__info {position: absolute; top: 0em; left: 2em;}", - ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em; text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.5);}", - ".multicolumn-card__info p {color: rgb(var(--color-background)); text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.5);}", + ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em; text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.3);}", + ".multicolumn-card__info p {color: rgb(var(--color-background)); text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.3);}", ".multicolumn-card__info > :nth-child(2) {margin-top: 0em;}" ], "settings": { From 1bf912463cf48eb2f83756377063959043c0b539 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 14:59:58 +0000 Subject: [PATCH 039/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index da5d38a0d24..2f11fa42e21 100644 --- a/templates/index.json +++ b/templates/index.json @@ -41,8 +41,8 @@ ".background-none .multicolumn-card__image-wrapper {margin: unset;}", ".multicolumn-list__item {position: relative;}", ".multicolumn-card__info {position: absolute; top: 0em; left: 2em;}", - ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em; text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.3);}", - ".multicolumn-card__info p {color: rgb(var(--color-background)); text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.3);}", + ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em; text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.2);}", + ".multicolumn-card__info p {color: rgb(var(--color-background)); text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.2);}", ".multicolumn-card__info > :nth-child(2) {margin-top: 0em;}" ], "settings": { From 0713022c46b39796db7e060356a0e3251a5e770f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:08:34 +0000 Subject: [PATCH 040/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- assets/product-info.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/assets/product-info.js b/assets/product-info.js index 3a33047f3e1..4a1bf8ed92c 100644 --- a/assets/product-info.js +++ b/assets/product-info.js @@ -125,8 +125,7 @@ if (!customElements.get('product-info')) { this.pendingRequestUrl = null; const html = new DOMParser().parseFromString(responseText, 'text/html'); - const sku = document.getElementById(`sku-${this.dataset.section}`); - if (sku) sku.classList.remove('visibility-hidden'), this.updateSku(html); + this.updateDynamic(`sku-${this.dataset.section}`, html); callback(html); }) @@ -143,8 +142,7 @@ if (!customElements.get('product-info')) { }); } - updateSku(html) { - const id = `sku-${this.dataset.section}`; + updateDynamic(id, html) { const destination = document.getElementById(id); const source = html.getElementById(id); From c80449d2e120af55795d4e2ffefa4aa7c7276251 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:10:02 +0000 Subject: [PATCH 041/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- assets/product-info.js | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/product-info.js b/assets/product-info.js index 4a1bf8ed92c..ca0c5243dcb 100644 --- a/assets/product-info.js +++ b/assets/product-info.js @@ -126,6 +126,7 @@ if (!customElements.get('product-info')) { const html = new DOMParser().parseFromString(responseText, 'text/html'); this.updateDynamic(`sku-${this.dataset.section}`, html); + this.updateDynamic(`qty-disclaimer-${this.dataset.section}`, html); callback(html); }) From d360a51bb317066ce2acf2e45a7096abf0d4a245 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:36:34 +0000 Subject: [PATCH 042/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-collection-banner.liquid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sections/main-collection-banner.liquid b/sections/main-collection-banner.liquid index 589d3000e85..ac6fa1d1bf2 100644 --- a/sections/main-collection-banner.liquid +++ b/sections/main-collection-banner.liquid @@ -58,7 +58,7 @@ } .collection-hero__description.to-expand .collection-hero__description__expand { - opacity: 1; + display: block; } .collection-hero__description { @@ -78,7 +78,7 @@ bottom: 0px; left: 0px; background: linear-gradient(to top, #ffffff, transparent); - opacity: 0; + display: none; } .collection-hero__description__expand button { From ff631427011ab1ef2e23bbc30b94f55d0ddcbf0e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:37:00 +0000 Subject: [PATCH 043/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-collection-banner.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/main-collection-banner.liquid b/sections/main-collection-banner.liquid index ac6fa1d1bf2..91f78095898 100644 --- a/sections/main-collection-banner.liquid +++ b/sections/main-collection-banner.liquid @@ -58,7 +58,7 @@ } .collection-hero__description.to-expand .collection-hero__description__expand { - display: block; + display: inline-block; } .collection-hero__description { From 395d5fe374c7f904fa085b2bee0994f37f9fc2af Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:37:15 +0000 Subject: [PATCH 044/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-collection-banner.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/main-collection-banner.liquid b/sections/main-collection-banner.liquid index 91f78095898..ac6fa1d1bf2 100644 --- a/sections/main-collection-banner.liquid +++ b/sections/main-collection-banner.liquid @@ -58,7 +58,7 @@ } .collection-hero__description.to-expand .collection-hero__description__expand { - display: inline-block; + display: block; } .collection-hero__description { From 7be5bc5606d76f4fcddf04f803e7ed63fb20779e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:38:35 +0000 Subject: [PATCH 045/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/main-collection-banner.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/main-collection-banner.liquid b/sections/main-collection-banner.liquid index ac6fa1d1bf2..8dda794c3fa 100644 --- a/sections/main-collection-banner.liquid +++ b/sections/main-collection-banner.liquid @@ -58,7 +58,7 @@ } .collection-hero__description.to-expand .collection-hero__description__expand { - display: block; + display: flex; } .collection-hero__description { From 5c2f996aa64ecd720318c4ec8226bfa68f6e5c8f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:46:47 +0000 Subject: [PATCH 046/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/page.brand.json b/templates/page.brand.json index 4244d1789cb..9483e421e17 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -11,6 +11,9 @@ "sections": { "main": { "type": "main-page", + "custom_css": [ + "h1 {text-align: center;}" + ], "settings": { "padding_top": 28, "padding_bottom": 28 From 119e9998257c45c3b12dd25de36ef8edf4042a33 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:47:05 +0000 Subject: [PATCH 047/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index 9483e421e17..c93bca364c9 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -12,7 +12,7 @@ "main": { "type": "main-page", "custom_css": [ - "h1 {text-align: center;}" + "h1 {text-align: center; margin-top: 1em;}" ], "settings": { "padding_top": 28, From 26adf785d71e4219b860d2247825637c4e946453 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 07:21:45 +0000 Subject: [PATCH 048/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index 2f11fa42e21..8fcfb6d256d 100644 --- a/templates/index.json +++ b/templates/index.json @@ -15,7 +15,7 @@ "column_4PjnNt": { "type": "column", "settings": { - "image": "shopify:\/\/shop_images\/Snapinsta.app_449689181_865635138936138_1622082402760830127_n_1080_1.jpg", + "image": "shopify:\/\/shop_images\/Bitossi-home-piatti-petalo-2.webp", "title": "BITOSSI HOME<\/strong>", "text": "

Piatti Petalo<\/strong><\/a><\/p>", "link_label": "", From bb6a77fe06af8ce00106b0f564724274c302934b Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 08:34:54 +0000 Subject: [PATCH 049/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- locales/it.json | 115 ++++++++++++++++++++++++++++++++++-------------- 1 file changed, 82 insertions(+), 33 deletions(-) diff --git a/locales/it.json b/locales/it.json index fc60b543880..0d76af5507c 100644 --- a/locales/it.json +++ b/locales/it.json @@ -1,3 +1,12 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin language editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "general": { "password_page": { @@ -7,7 +16,7 @@ "login_form_password_placeholder": "La tua password", "login_form_error": "Password errata!", "login_form_submit": "Accedi", - "admin_link_html": "Sei il proprietario del negozio? Accedi qui", + "admin_link_html": "Sei il proprietario del negozio? Accedi qui<\/a>", "powered_by_shopify_html": "Questo negozio sarà ospitato su {{ shopify }}" }, "social": { @@ -35,7 +44,10 @@ "next": "Pagina successiva", "previous": "Pagina precedente" }, - "search": { "search": "Cerca", "reset": "Cancella termine ricerca" }, + "search": { + "search": "Cerca", + "reset": "Cancella termine ricerca" + }, "cart": { "view": "Visualizza carrello ({{ count }})", "item_added": "Articolo aggiunto al carrello", @@ -54,7 +66,11 @@ "name": "Cursore" } }, - "newsletter": { "label": "Indirizzo email", "success": "Grazie per l'iscrizione", "button_label": "Iscriviti" }, + "newsletter": { + "label": "Indirizzo email", + "success": "Grazie per l'iscrizione", + "button_label": "Iscriviti" + }, "accessibility": { "skip_to_text": "Vai direttamente ai contenuti", "close": "Chiudi", @@ -62,7 +78,10 @@ "vendor": "Produttore:", "error": "Errore", "refresh_page": "Scegliendo una selezione si ottiene un aggiornamento completo della pagina.", - "link_messages": { "new_window": "Si apre in una nuova finestra.", "external": "Apre un sito web esterno." }, + "link_messages": { + "new_window": "Si apre in una nuova finestra.", + "external": "Apre un sito web esterno." + }, "loading": "Caricamento in corso...", "skip_to_product_info": "Passa alle informazioni sul prodotto", "total_reviews": "recensioni totali", @@ -74,7 +93,11 @@ "article": { "blog": "Blog", "read_more_title": "Leggi di più: {{ title }}", - "comments": { "one": "{{ count }} commento", "other": "{{ count }} commenti", "many": "{{ count }} commenti" }, + "comments": { + "one": "{{ count }} commento", + "other": "{{ count }} commenti", + "many": "{{ count }} commenti" + }, "moderated": "Si prega di notare che, prima di essere pubblicati, i commenti devono essere approvati.", "comment_form_title": "Lascia un commento", "name": "Nome", @@ -87,7 +110,10 @@ "success_moderated": "Il tuo commento è stato pubblicato. Lo pubblicheremo fra poco, il nostro blog è soggetto a moderazione." } }, - "onboarding": { "product_title": "Esempio di titolo del prodotto", "collection_title": "Nome della collezione" }, + "onboarding": { + "product_title": "Esempio di titolo del prodotto", + "collection_title": "Nome della collezione" + }, "products": { "product": { "add_to_cart": "Aggiungi al carrello", @@ -101,7 +127,7 @@ "minimum_of": "Minimo di {{ quantity }}", "maximum_of": "Massimo di {{ quantity }}", "multiples_of": "Incrementi di {{ quantity }}", - "in_cart_html": "{{ quantity }} nel carrello", + "in_cart_html": "{{ quantity }}<\/span> nel carrello", "note": "Visualizza regole sulla quantità", "min_of": "Min {{ quantity }}", "max_of": "Max {{ quantity }}" @@ -123,8 +149,8 @@ "view_store_info": "Visualizza i dettagli del negozio", "check_other_stores": "Verifica la disponibilità in altri negozi", "pick_up_available": "Ritiro disponibile", - "pick_up_available_at_html": "Ritiro disponibile presso la sede {{ location_name }}", - "pick_up_unavailable_at_html": "Ritiro attualmente non disponibile presso la sede {{ location_name }}", + "pick_up_available_at_html": "Ritiro disponibile presso la sede {{ location_name }}<\/span>", + "pick_up_unavailable_at_html": "Ritiro attualmente non disponibile presso la sede {{ location_name }}<\/span>", "unavailable": "Impossibile caricare la disponibilità di ritiro", "refresh": "Aggiorna" }, @@ -139,13 +165,13 @@ "image_available": "L'immagine {{ index }} è ora disponibile in visualizzazione galleria" }, "view_full_details": "Visualizza dettagli completi", - "shipping_policy_html": "Spese di spedizione calcolate al check-out.", + "shipping_policy_html": "Spese di spedizione<\/a> calcolate al check-out.", "choose_options": "Scegli opzioni", "choose_product_options": "Scegli opzioni per {{ product_name }}", "value_unavailable": "{{ option_value }} - Non disponibile", "variant_sold_out_or_unavailable": "Variante esaurita o non disponibile", "inventory_in_stock": "Disponibile", - "inventory_in_stock_show_count": "{{ quantity }} disponibile/i", + "inventory_in_stock_show_count": "{{ quantity }} disponibile\/i", "inventory_low_stock": "Scorte ridotte", "inventory_low_stock_show_count": "Scorte ridotte: ne restano {{ quantity }}", "inventory_out_of_stock": "Esaurito", @@ -155,7 +181,7 @@ "title": "Prezzi basati sui volumi", "note": "Prezzi basati sui volumi disponibili", "minimum": "Più di {{ quantity }}", - "price_at_each": "a {{ price }}/ciascuno", + "price_at_each": "a {{ price }}\/ciascuno", "price_range": "{{ minimum }} - {{ maximum }}" }, "product_variants": "Varianti di prodotto", @@ -163,7 +189,9 @@ "duties_included": "Dazi inclusi.", "duties_and_taxes_included": "Dazi e imposte inclusi." }, - "modal": { "label": "Galleria contenuti multimediali" }, + "modal": { + "label": "Galleria contenuti multimediali" + }, "facets": { "apply": "Applica", "clear": "Cancella", @@ -234,7 +262,9 @@ "many": "{{ count }} suggerimenti" } }, - "cart": { "cart": "Carrello" }, + "cart": { + "cart": "Carrello" + }, "contact": { "form": { "name": "Nome", @@ -247,13 +277,20 @@ "title": "Modulo di contatto" } }, - "404": { "title": "Pagina non trovata", "subtext": "404" } + "404": { + "title": "Pagina non trovata", + "subtext": "404" + } }, "sections": { "header": { "announcement": "Annuncio", "menu": "Menu", - "cart_count": { "one": "{{ count }} articolo", "other": "{{ count }} articoli", "many": "{{ count }} articoli" } + "cart_count": { + "one": "{{ count }} articolo", + "other": "{{ count }} articoli", + "many": "{{ count }} articoli" + } }, "cart": { "title": "Il tuo carrello", @@ -274,20 +311,22 @@ "update": "Aggiorna", "login": { "title": "Hai un account?", - "paragraph_html": "Accedi per un check-out più veloce." + "paragraph_html": "Accedi<\/a> per un check-out più veloce." }, "estimated_total": "Totale stimato", "new_estimated_total": "Nuovo totale stimato", - "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Dazi e imposte inclusi. Sconti e spedizione calcolati al check-out.", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Dazi e imposte inclusi. Sconti e spedizione<\/a> calcolati al check-out.", "duties_and_taxes_included_shipping_at_checkout_without_policy": "Dazi e imposte inclusi. Sconti e spedizione calcolati al check-out.", - "taxes_included_shipping_at_checkout_with_policy_html": "Imposte incluse. Sconti e spedizione calcolati al check-out.", + "taxes_included_shipping_at_checkout_with_policy_html": "Imposte incluse. Sconti e spedizione<\/a> calcolati al check-out.", "taxes_included_shipping_at_checkout_without_policy": "Imposte incluse. Sconti e spedizione calcolati al check-out.", - "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Dazi inclusi. Imposte, sconti e spedizione calcolati al check-out.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Dazi inclusi. Imposte, sconti e spedizione<\/a> calcolati al check-out.", "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Dazi inclusi. Imposte, sconti e spedizione calcolati al check-out.", - "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Imposte, sconti e spedizione calcolati al check-out.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Imposte, sconti e spedizione<\/a> calcolati al check-out.", "taxes_at_checkout_shipping_at_checkout_without_policy": "Imposte, sconti e spedizione calcolati al check-out." }, - "footer": { "payment": "Metodi di pagamento" }, + "footer": { + "payment": "Metodi di pagamento" + }, "featured_blog": { "view_all": "Visualizza tutto", "onboarding_title": "Articolo del blog", @@ -297,13 +336,17 @@ "view_all": "Visualizza tutto", "view_all_label": "Visualizza tutti i prodotti della collezione {{ collection_name }}" }, - "collection_list": { "view_all": "Visualizza tutto" }, + "collection_list": { + "view_all": "Visualizza tutto" + }, "collection_template": { "title": "Collezione", "empty": "Nessun prodotto trovato", - "use_fewer_filters_html": "Utilizza meno filtri o rimuovi tutto" + "use_fewer_filters_html": "Utilizza meno filtri o rimuovi tutto<\/a>" + }, + "video": { + "load_video": "Carica il video: {{ description }}" }, - "video": { "load_video": "Carica il video: {{ description }}" }, "slideshow": { "load_slide": "Carica slide", "previous_slideshow": "Slide precedente", @@ -313,7 +356,9 @@ "carousel": "Carousel", "slide": "Scorrimento" }, - "page": { "title": "Titolo pagina" }, + "page": { + "title": "Titolo pagina" + }, "announcements": { "previous_announcement": "Annuncio precedente", "next_announcement": "Annuncio successivo", @@ -324,7 +369,7 @@ "quick_order_list": { "product_total": "Subtotale prodotto", "view_cart": "Visualizza carrello", - "each": "{{ money }}/ciascuno", + "each": "{{ money }}\/ciascuno", "product": "Prodotto", "variant": "Variante", "variant_total": "Totale varianti", @@ -350,13 +395,13 @@ } }, "localization": { - "country_label": "Paese/Area geografica", + "country_label": "Paese\/Area geografica", "language_label": "Lingua", "update_language": "Aggiorna lingua", - "update_country": "Aggiorna paese/area geografica", + "update_country": "Aggiorna paese\/area geografica", "search": "Cerca", - "popular_countries_regions": "Paesi/aree geografiche popolari", - "country_results_count": "{{ count }} paesi/aree geografiche trovati" + "popular_countries_regions": "Paesi\/aree geografiche popolari", + "country_results_count": "{{ count }} paesi\/aree geografiche trovati" }, "customer": { "account": { @@ -385,7 +430,7 @@ "address1": "Indirizzo - campo 1", "address2": "Indirizzo - campo 2", "city": "Città", - "country": "Paese/Area geografica", + "country": "Paese\/Area geografica", "province": "Provincia", "zip": "CAP", "phone": "Numero di telefono", @@ -501,5 +546,9 @@ "collapsed": "Modulo destinatario del buono regalo compresso" } }, - "shopify": { "links": { "powered_by_shopify": " " } } + "shopify": { + "links": { + "powered_by_shopify": "P.IVA IT00454960436" + } + } } From 7154698805cc1e504a9a6e8788c9b964008236cc Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:43:06 +0000 Subject: [PATCH 050/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- snippets/header-drawer.liquid | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/snippets/header-drawer.liquid b/snippets/header-drawer.liquid index 2aa09a77900..1a87bb6f7d4 100644 --- a/snippets/header-drawer.liquid +++ b/snippets/header-drawer.liquid @@ -29,7 +29,9 @@ id="HeaderDrawer-{{ link.handle }}" class="menu-drawer__menu-item list-menu__item link link--text focus-inset{% if link.child_active %} menu-drawer__menu-item--active{% endif %}" > - {{ link.title | escape }} + + {{ link.title | escape }} + {{- 'icon-arrow.svg' | inline_asset_content -}} From 68a29b471a0927f2fdaf60091d44c411dfc5d359 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:44:42 +0000 Subject: [PATCH 051/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- snippets/header-drawer.liquid | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/snippets/header-drawer.liquid b/snippets/header-drawer.liquid index 1a87bb6f7d4..d660acdef7c 100644 --- a/snippets/header-drawer.liquid +++ b/snippets/header-drawer.liquid @@ -71,7 +71,9 @@ id="HeaderDrawer-{{ link.handle }}-{{ childlink.handle }}" class="menu-drawer__menu-item link link--text list-menu__item focus-inset" > - {{ childlink.title | escape }} + + {{ childlink.title | escape }} + {{- 'icon-arrow.svg' | inline_asset_content -}} From 47f43970adf3c5f4c26806b7bc84ab64bd8194c2 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:45:45 +0000 Subject: [PATCH 052/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- snippets/header-drawer.liquid | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/snippets/header-drawer.liquid b/snippets/header-drawer.liquid index d660acdef7c..2aa09a77900 100644 --- a/snippets/header-drawer.liquid +++ b/snippets/header-drawer.liquid @@ -29,9 +29,7 @@ id="HeaderDrawer-{{ link.handle }}" class="menu-drawer__menu-item list-menu__item link link--text focus-inset{% if link.child_active %} menu-drawer__menu-item--active{% endif %}" > - - {{ link.title | escape }} - + {{ link.title | escape }} {{- 'icon-arrow.svg' | inline_asset_content -}} @@ -71,9 +69,7 @@ id="HeaderDrawer-{{ link.handle }}-{{ childlink.handle }}" class="menu-drawer__menu-item link link--text list-menu__item focus-inset" > - - {{ childlink.title | escape }} - + {{ childlink.title | escape }} {{- 'icon-arrow.svg' | inline_asset_content -}} From d0b27494e6e51b5200328da51752bff65e35c009 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 16:46:12 +0000 Subject: [PATCH 053/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- .../collection.regali-per-gli-sposi.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 templates/collection.regali-per-gli-sposi.json diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json new file mode 100644 index 00000000000..47f7186364a --- /dev/null +++ b/templates/collection.regali-per-gli-sposi.json @@ -0,0 +1,48 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ +{ + "sections": { + "banner": { + "type": "main-collection-banner", + "custom_css": [ + "a {color: #598db2;}" + ], + "settings": { + "show_collection_description": true, + "show_collection_image": false, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" + } + }, + "product-grid": { + "type": "main-collection-product-grid", + "settings": { + "products_per_page": 36, + "columns_desktop": 4, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2", + "image_ratio": "square", + "image_shape": "default", + "show_secondary_image": false, + "show_vendor": false, + "show_rating": true, + "quick_add": "standard", + "enable_filtering": true, + "filter_type": "drawer", + "enable_sorting": true, + "columns_mobile": "2", + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": [ + "banner", + "product-grid" + ] +} From 009396962188a6df24ffa1aa93d4d91c1cb30b55 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 16:57:18 +0000 Subject: [PATCH 054/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- .../collection.regali-per-gli-sposi.json | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index 47f7186364a..245e13c78df 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -20,6 +20,69 @@ "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" } }, + "multicolumn_7Y39gc": { + "type": "multicolumn", + "blocks": { + "column_RJw3E4": { + "type": "column", + "settings": { + "title": "Colonna", + "text": "

Idee Seletti<\/p>", + "link_label": "", + "link": "" + } + }, + "column_EhPXgn": { + "type": "column", + "settings": { + "title": "Colonna", + "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "link_label": "", + "link": "" + } + }, + "column_EjCVQU": { + "type": "column", + "settings": { + "title": "Colonna", + "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "link_label": "", + "link": "" + } + }, + "column_wAGz6B": { + "type": "column", + "settings": { + "title": "Colonna", + "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "link_label": "", + "link": "" + } + } + }, + "block_order": [ + "column_RJw3E4", + "column_EhPXgn", + "column_EjCVQU", + "column_wAGz6B" + ], + "settings": { + "title": "Multicolonna", + "heading_size": "h1", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 3, + "column_alignment": "left", + "background_style": "primary", + "button_label": "Etichetta pulsante", + "button_link": "", + "color_scheme": "", + "columns_mobile": "1", + "swipe_on_mobile": false, + "padding_top": 36, + "padding_bottom": 36 + } + }, "product-grid": { "type": "main-collection-product-grid", "settings": { @@ -43,6 +106,7 @@ }, "order": [ "banner", + "multicolumn_7Y39gc", "product-grid" ] } From 225153edcd9d4d827635f21f8808e22a8103636f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 16:59:07 +0000 Subject: [PATCH 055/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index 245e13c78df..89190879944 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -25,6 +25,7 @@ "blocks": { "column_RJw3E4": { "type": "column", + "disabled": true, "settings": { "title": "Colonna", "text": "

Idee Seletti<\/p>", From 4e40d3937dc1409d3fdcf08786e57f9343404a09 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:03:26 +0000 Subject: [PATCH 056/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- .../collection.regali-per-gli-sposi.json | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index 89190879944..2b007118517 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -23,17 +23,16 @@ "multicolumn_7Y39gc": { "type": "multicolumn", "blocks": { - "column_RJw3E4": { + "column_zPKWdi": { "type": "column", - "disabled": true, "settings": { - "title": "Colonna", - "text": "

Idee Seletti<\/p>", + "title": "Idde Seletti", + "text": "", "link_label": "", "link": "" } }, - "column_EhPXgn": { + "column_bbJwDy": { "type": "column", "settings": { "title": "Colonna", @@ -42,7 +41,7 @@ "link": "" } }, - "column_EjCVQU": { + "column_48TzTw": { "type": "column", "settings": { "title": "Colonna", @@ -51,7 +50,7 @@ "link": "" } }, - "column_wAGz6B": { + "column_FdqzAC": { "type": "column", "settings": { "title": "Colonna", @@ -62,10 +61,10 @@ } }, "block_order": [ - "column_RJw3E4", - "column_EhPXgn", - "column_EjCVQU", - "column_wAGz6B" + "column_zPKWdi", + "column_bbJwDy", + "column_48TzTw", + "column_FdqzAC" ], "settings": { "title": "Multicolonna", From de49180d4c008d7fdd833c8b301f01ae8b22a88f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:03:50 +0000 Subject: [PATCH 057/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index 2b007118517..ef7c6cb90ba 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -26,7 +26,7 @@ "column_zPKWdi": { "type": "column", "settings": { - "title": "Idde Seletti", + "title": "IDEE SELETTI", "text": "", "link_label": "", "link": "" From 38dfa2fa82e64ee989cfb0ff745759478a3bdb7a Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:06:01 +0000 Subject: [PATCH 058/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index ef7c6cb90ba..b9b84f8ec22 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -35,8 +35,8 @@ "column_bbJwDy": { "type": "column", "settings": { - "title": "Colonna", - "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "title": "", + "text": "

Idee KnIndustrie<\/p>", "link_label": "", "link": "" } From df7b08df329dd5a6a6d02a36368d71008b69382a Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:07:06 +0000 Subject: [PATCH 059/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index b9b84f8ec22..bd8cf311ca1 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -44,8 +44,8 @@ "column_48TzTw": { "type": "column", "settings": { - "title": "Colonna", - "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "title": "", + "text": "

Per La Tavola<\/p>", "link_label": "", "link": "" } From d5b0f9e47a793a0c60d0ed2f64c613b5f262a6db Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:07:28 +0000 Subject: [PATCH 060/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index bd8cf311ca1..a5fcbde6542 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -53,8 +53,8 @@ "column_FdqzAC": { "type": "column", "settings": { - "title": "Colonna", - "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "title": "", + "text": "

Per la Cucina<\/p>", "link_label": "", "link": "" } From 94f9808075f2e53f1e804f6c0fb9fded46ffc90d Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:07:52 +0000 Subject: [PATCH 061/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index a5fcbde6542..201a699862f 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -26,7 +26,7 @@ "column_zPKWdi": { "type": "column", "settings": { - "title": "IDEE SELETTI", + "title": "Idee Seletti", "text": "", "link_label": "", "link": "" From 99e4e05d6c912b4a0684f404cf1310a003da4d61 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:12:41 +0000 Subject: [PATCH 062/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.bitossi-home.json | 34 ++++++++++++++++++++------ 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/templates/collection.bitossi-home.json b/templates/collection.bitossi-home.json index bb766748a25..790f15f7b25 100644 --- a/templates/collection.bitossi-home.json +++ b/templates/collection.bitossi-home.json @@ -1,8 +1,19 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "banner": { "type": "main-collection-banner", - "custom_css": ["a {color: #598db2;}"], + "custom_css": [ + "a {color: #598db2;}" + ], "settings": { "show_collection_description": true, "show_collection_image": false, @@ -16,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

Piatti

Bicchieri & Calici

Tazze & Tazzine

Tovagliette & Vassoi

Le decorazioni

", + "text": "

Piatti<\/a><\/h4>

Bicchieri & Calici<\/a><\/h4>

Tazze & Tazzine<\/a><\/h4>

Tovagliette & Vassoi<\/a><\/h4>

Le decorazioni<\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } @@ -25,7 +36,7 @@ "type": "column", "settings": { "title": "", - "text": "

Bicchieri Diseguale

Piatti Botanica

Piatti  Parisienne

Piatti Rose Black

Piatti La Tavola Scomposta

", + "text": "

Bicchieri Diseguale<\/a><\/h4>

Piatti Botanica<\/a><\/h4>

Piatti  Parisienne<\/a><\/h4>

Piatti Rose Black<\/a><\/h4>

Piatti La Tavola Scomposta<\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } @@ -34,7 +45,7 @@ "type": "column", "settings": { "title": "", - "text": "

I Piattini

Piatti Frutto della Passione

Piatti Abracadabra

Piatti Smerlo

Piatti Bel Paese

", + "text": "

I Piattini<\/a><\/h4>

Piatti Frutto della Passione<\/a><\/h4>

Piatti Abracadabra<\/a><\/h4>

Piatti Smerlo<\/a><\/h4>

Piatti Bel Paese<\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } @@ -43,13 +54,18 @@ "type": "column", "settings": { "title": "", - "text": "

Demodè

Piatti Petalo

", + "text": "

Demodè<\/a><\/h4>

Piatti Petalo<\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } } }, - "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_rpy7eJ"], + "block_order": [ + "column_PgEVHi", + "column_pqxUGY", + "column_gPeEtt", + "column_rpy7eJ" + ], "settings": { "title": "Scopri tutte le Collezioni Bitossi Home", "heading_size": "h2", @@ -88,5 +104,9 @@ } } }, - "order": ["banner", "multicolumn_MxLddP", "product-grid"] + "order": [ + "banner", + "multicolumn_MxLddP", + "product-grid" + ] } From ae119efabbc10d82cb509bbf0f606a32f18caa1a Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:17:18 +0000 Subject: [PATCH 063/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index 201a699862f..7c0f95d23af 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -69,11 +69,11 @@ "settings": { "title": "Multicolonna", "heading_size": "h1", - "image_width": "full", + "image_width": "half", "image_ratio": "adapt", "columns_desktop": 3, "column_alignment": "left", - "background_style": "primary", + "background_style": "none", "button_label": "Etichetta pulsante", "button_link": "", "color_scheme": "", From dc7537fc0f7c1022a3fcb6c53258d624a8dbac62 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:18:28 +0000 Subject: [PATCH 064/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- .../collection.regali-per-gli-sposi.json | 63 ++++++++++--------- 1 file changed, 32 insertions(+), 31 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index 7c0f95d23af..dd5309d1028 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -9,71 +9,60 @@ */ { "sections": { - "banner": { - "type": "main-collection-banner", - "custom_css": [ - "a {color: #598db2;}" - ], - "settings": { - "show_collection_description": true, - "show_collection_image": false, - "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" - } - }, - "multicolumn_7Y39gc": { + "multicolumn_KrakWV": { "type": "multicolumn", "blocks": { - "column_zPKWdi": { + "column_JHqMTc": { "type": "column", "settings": { - "title": "Idee Seletti", - "text": "", + "title": "Colonna", + "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", "link_label": "", "link": "" } }, - "column_bbJwDy": { + "column_6kJgFK": { "type": "column", "settings": { - "title": "", - "text": "

Idee KnIndustrie<\/p>", + "title": "Colonna", + "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", "link_label": "", "link": "" } }, - "column_48TzTw": { + "column_Y9XFf4": { "type": "column", "settings": { - "title": "", - "text": "

Per La Tavola<\/p>", + "title": "Colonna", + "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", "link_label": "", "link": "" } }, - "column_FdqzAC": { + "column_Nncp96": { "type": "column", "settings": { - "title": "", - "text": "

Per la Cucina<\/p>", + "title": "Colonna", + "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", "link_label": "", "link": "" } } }, "block_order": [ - "column_zPKWdi", - "column_bbJwDy", - "column_48TzTw", - "column_FdqzAC" + "column_JHqMTc", + "column_6kJgFK", + "column_Y9XFf4", + "column_Nncp96" ], "settings": { "title": "Multicolonna", "heading_size": "h1", - "image_width": "half", + "image_width": "full", "image_ratio": "adapt", "columns_desktop": 3, "column_alignment": "left", - "background_style": "none", + "background_style": "primary", "button_label": "Etichetta pulsante", "button_link": "", "color_scheme": "", @@ -83,8 +72,20 @@ "padding_bottom": 36 } }, + "banner": { + "type": "main-collection-banner", + "custom_css": [ + "a {color: #598db2;}" + ], + "settings": { + "show_collection_description": true, + "show_collection_image": false, + "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" + } + }, "product-grid": { "type": "main-collection-product-grid", + "disabled": true, "settings": { "products_per_page": 36, "columns_desktop": 4, @@ -105,8 +106,8 @@ } }, "order": [ + "multicolumn_KrakWV", "banner", - "multicolumn_7Y39gc", "product-grid" ] } From 6da05e466b594a7bcd94812bf0a97d27a28bda0d Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:19:01 +0000 Subject: [PATCH 065/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index dd5309d1028..9bb7c3797b6 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -56,11 +56,11 @@ "column_Nncp96" ], "settings": { - "title": "Multicolonna", + "title": "", "heading_size": "h1", "image_width": "full", "image_ratio": "adapt", - "columns_desktop": 3, + "columns_desktop": 4, "column_alignment": "left", "background_style": "primary", "button_label": "Etichetta pulsante", From d5a0ebdb33daa97c28f2cabd234cf6cca02c3f02 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:20:31 +0000 Subject: [PATCH 066/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index 9bb7c3797b6..a6b3530be44 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -15,8 +15,8 @@ "column_JHqMTc": { "type": "column", "settings": { - "title": "Colonna", - "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "title": "", + "text": "

Idee Seletti<\/p>", "link_label": "", "link": "" } @@ -62,7 +62,7 @@ "image_ratio": "adapt", "columns_desktop": 4, "column_alignment": "left", - "background_style": "primary", + "background_style": "none", "button_label": "Etichetta pulsante", "button_link": "", "color_scheme": "", From f82d49ae22dc458b161c76a0eaec0f5c3c300f7d Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:20:52 +0000 Subject: [PATCH 067/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index a6b3530be44..d8e52318a8c 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -24,8 +24,8 @@ "column_6kJgFK": { "type": "column", "settings": { - "title": "Colonna", - "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "title": "", + "text": "

Idee KnIndustrie<\/p>", "link_label": "", "link": "" } From a7ac3f1f224dbbacbc4b332ebd5d31103f675f13 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:21:48 +0000 Subject: [PATCH 068/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.regali-per-gli-sposi.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index d8e52318a8c..bb8032a5a53 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -33,8 +33,8 @@ "column_Y9XFf4": { "type": "column", "settings": { - "title": "Colonna", - "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "title": "", + "text": "

Per la Tavola<\/p>", "link_label": "", "link": "" } @@ -42,8 +42,8 @@ "column_Nncp96": { "type": "column", "settings": { - "title": "Colonna", - "text": "

Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.<\/p>", + "title": "", + "text": "

Per la Cucina<\/p>", "link_label": "", "link": "" } From 5fb9151c3387c610635ec3f7ecb898303d0acc3e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:24:52 +0000 Subject: [PATCH 069/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- .../collection.regali-per-gli-sposi.json | 64 ------------------- 1 file changed, 64 deletions(-) diff --git a/templates/collection.regali-per-gli-sposi.json b/templates/collection.regali-per-gli-sposi.json index bb8032a5a53..dc2f174e072 100644 --- a/templates/collection.regali-per-gli-sposi.json +++ b/templates/collection.regali-per-gli-sposi.json @@ -9,69 +9,6 @@ */ { "sections": { - "multicolumn_KrakWV": { - "type": "multicolumn", - "blocks": { - "column_JHqMTc": { - "type": "column", - "settings": { - "title": "", - "text": "

Idee Seletti<\/p>", - "link_label": "", - "link": "" - } - }, - "column_6kJgFK": { - "type": "column", - "settings": { - "title": "", - "text": "

Idee KnIndustrie<\/p>", - "link_label": "", - "link": "" - } - }, - "column_Y9XFf4": { - "type": "column", - "settings": { - "title": "", - "text": "

Per la Tavola<\/p>", - "link_label": "", - "link": "" - } - }, - "column_Nncp96": { - "type": "column", - "settings": { - "title": "", - "text": "

Per la Cucina<\/p>", - "link_label": "", - "link": "" - } - } - }, - "block_order": [ - "column_JHqMTc", - "column_6kJgFK", - "column_Y9XFf4", - "column_Nncp96" - ], - "settings": { - "title": "", - "heading_size": "h1", - "image_width": "full", - "image_ratio": "adapt", - "columns_desktop": 4, - "column_alignment": "left", - "background_style": "none", - "button_label": "Etichetta pulsante", - "button_link": "", - "color_scheme": "", - "columns_mobile": "1", - "swipe_on_mobile": false, - "padding_top": 36, - "padding_bottom": 36 - } - }, "banner": { "type": "main-collection-banner", "custom_css": [ @@ -106,7 +43,6 @@ } }, "order": [ - "multicolumn_KrakWV", "banner", "product-grid" ] From 8a8bc479c439b0fae9e342d7e0d4a0f6093b0934 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:42:24 +0000 Subject: [PATCH 070/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/404.json | 83 ++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 76 insertions(+), 7 deletions(-) diff --git a/templates/404.json b/templates/404.json index 495d4954627..8fe2aff2186 100644 --- a/templates/404.json +++ b/templates/404.json @@ -1,17 +1,76 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { - "main": { "type": "main-404", "disabled": true, "settings": {} }, + "main": { + "type": "main-404", + "disabled": true, + "settings": { + } + }, + "rich_text_WVwjEh": { + "type": "rich-text", + "blocks": { + "heading_AmcdYT": { + "type": "heading", + "settings": { + "heading": "Qui non sembra esserci nulla.", + "heading_size": "h1" + } + }, + "text_7FL6cn": { + "type": "text", + "settings": { + "text": "

Spiacenti, il contenuto che stavi cercando non sembra più essere presente. Ma nessuna paura: ti aiutiamo a ritrovare la strada!<\/p>" + } + }, + "button_9b7HqW": { + "type": "button", + "settings": { + "button_label": "Torna in Home Page", + "button_link": "\/", + "button_style_secondary": false, + "button_label_2": "", + "button_link_2": "", + "button_style_secondary_2": false + } + } + }, + "block_order": [ + "heading_AmcdYT", + "text_7FL6cn", + "button_9b7HqW" + ], + "settings": { + "desktop_content_position": "center", + "content_alignment": "center", + "color_scheme": "scheme-1", + "full_width": true, + "padding_top": 80, + "padding_bottom": 52 + } + }, "image_with_text_LT6Arr": { "type": "image-with-text", "blocks": { "heading_gFfzLB": { "type": "heading", - "settings": { "heading": "Qui non sembra esserci nulla.", "heading_size": "h1" } + "settings": { + "heading": "Qui non sembra esserci nulla.", + "heading_size": "h1" + } }, "text_mLfBKz": { "type": "text", "settings": { - "text": "

Spiacenti, il contenuto che stavi cercando non sembra più essere presente. Ma nessuna paura: ti aiutiamo a ritrovare la strada!

", + "text": "

Spiacenti, il contenuto che stavi cercando non sembra più essere presente. Ma nessuna paura: ti aiutiamo a ritrovare la strada!<\/h3>", "text_style": "body" } }, @@ -27,14 +86,20 @@ "type": "button", "settings": { "button_label": "Home Page", - "button_link": "https://www.unicoemultiplo.com/", + "button_link": "https:\/\/www.unicoemultiplo.com\/", "button_style_secondary": false } } }, - "block_order": ["heading_gFfzLB", "text_mLfBKz", "caption_YpdWmd", "button_VNEyzp"], + "block_order": [ + "heading_gFfzLB", + "text_mLfBKz", + "caption_YpdWmd", + "button_VNEyzp" + ], + "disabled": true, "settings": { - "image": "shopify://shop_images/404-paginanontrovata_b1c14b21-c78a-42dd-a808-273d9bbf0a45.jpg", + "image": "shopify:\/\/shop_images\/404-paginanontrovata_b1c14b21-c78a-42dd-a808-273d9bbf0a45.jpg", "height": "adapt", "desktop_image_width": "small", "layout": "image_first", @@ -50,5 +115,9 @@ } } }, - "order": ["main", "image_with_text_LT6Arr"] + "order": [ + "main", + "rich_text_WVwjEh", + "image_with_text_LT6Arr" + ] } From f7294fb2cb8981d2f54960df8187d06118ba316e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:14:44 +0000 Subject: [PATCH 071/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/multicolumn.liquid | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/sections/multicolumn.liquid b/sections/multicolumn.liquid index 387962ffca0..25f2c48db7c 100644 --- a/sections/multicolumn.liquid +++ b/sections/multicolumn.liquid @@ -74,8 +74,14 @@ data-cascade style="--animation-order: {{ forloop.index }};" {% endif %} - > - -

+ {%- endfor -%} From 25df22b70ea65d9e3591057dbf0376178e73794e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:15:46 +0000 Subject: [PATCH 072/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index 8fcfb6d256d..ce8efba1328 100644 --- a/templates/index.json +++ b/templates/index.json @@ -19,7 +19,7 @@ "title": "BITOSSI HOME<\/strong>", "text": "

Piatti Petalo<\/strong><\/a><\/p>", "link_label": "", - "link": "shopify:\/\/collections\/bitossi-home-petalo-bitossi-home" + "link": "" } }, "column_pkHkxr": { From 5edc69fba58a5b408f52cc47834e3b6d100d4de2 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:20:49 +0000 Subject: [PATCH 073/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/multicolumn.liquid | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sections/multicolumn.liquid b/sections/multicolumn.liquid index 25f2c48db7c..44308141b3d 100644 --- a/sections/multicolumn.liquid +++ b/sections/multicolumn.liquid @@ -75,13 +75,7 @@ style="--animation-order: {{ forloop.index }};" {% endif %} > - +

- +
{%- endfor -%} From 2422db957fb529b16d676db904824409f013964a Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:22:22 +0000 Subject: [PATCH 074/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- sections/multicolumn.liquid | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sections/multicolumn.liquid b/sections/multicolumn.liquid index 44308141b3d..25f2c48db7c 100644 --- a/sections/multicolumn.liquid +++ b/sections/multicolumn.liquid @@ -75,7 +75,13 @@ style="--animation-order: {{ forloop.index }};" {% endif %} > - -

+ {%- endfor -%} From a905d32ff0d8a7d1c48e348303ec98d8b91d15d3 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:24:30 +0000 Subject: [PATCH 075/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index ce8efba1328..b42ebd7db3d 100644 --- a/templates/index.json +++ b/templates/index.json @@ -40,7 +40,7 @@ "custom_css": [ ".background-none .multicolumn-card__image-wrapper {margin: unset;}", ".multicolumn-list__item {position: relative;}", - ".multicolumn-card__info {position: absolute; top: 0em; left: 2em;}", + ".multicolumn-card__info {position: absolute; top: 0em; left: 2em; padding-top: 2.5rem;}", ".multicolumn-card__info h3 {color: rgb(var(--color-background)); font-size: 2em; text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.2);}", ".multicolumn-card__info p {color: rgb(var(--color-background)); text-shadow: 0px 0px 2em rgba(0, 0, 0, 0.2);}", ".multicolumn-card__info > :nth-child(2) {margin-top: 0em;}" From 07651d960ffcb1c8ceb5a597088c8b7727449cbf Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:25:20 +0000 Subject: [PATCH 076/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index b42ebd7db3d..72e8875b7d5 100644 --- a/templates/index.json +++ b/templates/index.json @@ -17,9 +17,9 @@ "settings": { "image": "shopify:\/\/shop_images\/Bitossi-home-piatti-petalo-2.webp", "title": "BITOSSI HOME<\/strong>", - "text": "

Piatti Petalo<\/strong><\/a><\/p>", + "text": "

Piatti Petalo<\/strong><\/p>", "link_label": "", - "link": "" + "link": "shopify:\/\/collections\/bitossi-home-petalo-bitossi-home" } }, "column_pkHkxr": { From bc1037c689c0418753d65410f489ad5e5cddb1f6 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:25:53 +0000 Subject: [PATCH 077/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index 72e8875b7d5..7c64af76e92 100644 --- a/templates/index.json +++ b/templates/index.json @@ -27,9 +27,9 @@ "settings": { "image": "shopify:\/\/shop_images\/KnIndustrie-bicchieri.webp", "title": "KNIDUSTRIE<\/strong>", - "text": "

I Bicchieri<\/strong><\/a><\/p>", + "text": "

I Bicchieri<\/strong><\/p>", "link_label": "", - "link": "" + "link": "shopify:\/\/collections\/knindustrie-catalogo-prodotti-bicchieri" } } }, From 19cc56f85137799b61128c41af7a99043ed29ec5 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:29:17 +0000 Subject: [PATCH 078/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/index.json b/templates/index.json index 7c64af76e92..595e9291701 100644 --- a/templates/index.json +++ b/templates/index.json @@ -210,7 +210,7 @@ "title": "", "text": "

Lifestyle<\/a><\/h4>", "link_label": "", - "link": "" + "link": "shopify:\/\/collections\/tempo-libero" } }, "column_H9PG3A": { @@ -230,7 +230,7 @@ "title": "", "text": "

Ufficio<\/a><\/h4>", "link_label": "", - "link": "" + "link": "shopify:\/\/collections\/ufficio" } }, "column_7y4mWL": { @@ -240,7 +240,7 @@ "title": "", "text": "

Idee Regalo<\/a><\/h4>", "link_label": "", - "link": "\/collections\/tempo-libero" + "link": "shopify:\/\/collections\/idee-regalo" } } }, From f7b3938895e98e2980dca5c56f7cc8b44200dec5 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:30:05 +0000 Subject: [PATCH 079/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index 595e9291701..6075e9e7c01 100644 --- a/templates/index.json +++ b/templates/index.json @@ -240,7 +240,7 @@ "title": "", "text": "

Idee Regalo<\/a><\/h4>", "link_label": "", - "link": "shopify:\/\/collections\/idee-regalo" + "link": "" } } }, From 38c36c617f5f13bbe88e1c4d973b3b783202d0bb Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:31:17 +0000 Subject: [PATCH 080/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- assets/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/base.css b/assets/base.css index d8ba9b498d6..315b8b48bf7 100644 --- a/assets/base.css +++ b/assets/base.css @@ -519,7 +519,7 @@ h6:empty { margin-left: 1rem; } -a:not([href]) { +a:not([href]):not([role="none"]) { cursor: not-allowed; } From eb8371208bab510b34d57dbed0f312231b4e13c2 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:31:34 +0000 Subject: [PATCH 081/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index 6075e9e7c01..595e9291701 100644 --- a/templates/index.json +++ b/templates/index.json @@ -240,7 +240,7 @@ "title": "", "text": "

Idee Regalo<\/a><\/h4>", "link_label": "", - "link": "" + "link": "shopify:\/\/collections\/idee-regalo" } } }, From 1c571b22ee7ec5f489c141c66d2908db9e05893e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 09:48:43 +0000 Subject: [PATCH 082/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- config/settings_data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/settings_data.json b/config/settings_data.json index 52774859610..2914388266a 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -24,7 +24,7 @@ "animations_hover_elements": "default", "buttons_border_thickness": 1, "buttons_border_opacity": 100, - "buttons_radius": 6, + "buttons_radius": 26, "buttons_shadow_opacity": 0, "buttons_shadow_horizontal_offset": 0, "buttons_shadow_vertical_offset": 4, From 8adf10885cf1a563b6b62c778383c9679280868d Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 09:50:04 +0000 Subject: [PATCH 083/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- config/settings_data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/settings_data.json b/config/settings_data.json index 2914388266a..c386cceffa6 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -26,7 +26,7 @@ "buttons_border_opacity": 100, "buttons_radius": 26, "buttons_shadow_opacity": 0, - "buttons_shadow_horizontal_offset": 0, + "buttons_shadow_horizontal_offset": -10, "buttons_shadow_vertical_offset": 4, "buttons_shadow_blur": 5, "variant_pills_border_thickness": 1, From 3d5ca75de080bfa1254f1f3d024e81ae0094d57f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 10:13:54 +0000 Subject: [PATCH 084/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- config/settings_data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/settings_data.json b/config/settings_data.json index c386cceffa6..1bafbccd86e 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -17,7 +17,7 @@ "type_body_font": "roboto_n4", "body_scale": 100, "page_width": 1400, - "spacing_sections": 0, + "spacing_sections": 16, "spacing_grid_horizontal": 20, "spacing_grid_vertical": 8, "animations_reveal_on_scroll": false, From 9d14016c4c4432ac26ae0603389a70a19a37d21c Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 21:57:15 +0000 Subject: [PATCH 085/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.json | 72 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 70 insertions(+), 2 deletions(-) diff --git a/templates/collection.json b/templates/collection.json index 9a5bde03cb5..b50704e014a 100644 --- a/templates/collection.json +++ b/templates/collection.json @@ -1,14 +1,78 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "banner": { "type": "main-collection-banner", - "custom_css": ["a {color: #598db2;}"], + "custom_css": [ + "a {color: #598db2;}" + ], "settings": { "show_collection_description": true, "show_collection_image": false, "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" } }, + "multicolumn_ATfHq8": { + "type": "multicolumn", + "blocks": { + "column_NfcWEm": { + "type": "column", + "settings": { + "title": "", + "text": "

Cuscini<\/p>", + "link_label": "", + "link": "" + } + }, + "column_xamkBh": { + "type": "column", + "settings": { + "title": "", + "text": "

Palid<\/p>", + "link_label": "", + "link": "" + } + }, + "column_fNdN8r": { + "type": "column", + "settings": { + "title": "", + "text": "

Tappeti<\/p>", + "link_label": "", + "link": "" + } + } + }, + "block_order": [ + "column_NfcWEm", + "column_xamkBh", + "column_fNdN8r" + ], + "settings": { + "title": "", + "heading_size": "h1", + "image_width": "full", + "image_ratio": "adapt", + "columns_desktop": 3, + "column_alignment": "left", + "background_style": "primary", + "button_label": "Etichetta pulsante", + "button_link": "", + "color_scheme": "", + "columns_mobile": "1", + "swipe_on_mobile": false, + "padding_top": 36, + "padding_bottom": 36 + } + }, "product-grid": { "type": "main-collection-product-grid", "settings": { @@ -30,5 +94,9 @@ } } }, - "order": ["banner", "product-grid"] + "order": [ + "banner", + "multicolumn_ATfHq8", + "product-grid" + ] } From fc590f1654d2d35bcb619d7c124c027fe6cf1103 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 21:58:59 +0000 Subject: [PATCH 086/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/collection.json b/templates/collection.json index b50704e014a..d734e79df17 100644 --- a/templates/collection.json +++ b/templates/collection.json @@ -27,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

Cuscini<\/p>", + "text": "

Cuscini<\/h2>", "link_label": "", "link": "" } @@ -36,7 +36,7 @@ "type": "column", "settings": { "title": "", - "text": "

Palid<\/p>", + "text": "

Palid<\/h2>", "link_label": "", "link": "" } @@ -45,7 +45,7 @@ "type": "column", "settings": { "title": "", - "text": "

Tappeti<\/p>", + "text": "

Tappeti<\/h2>", "link_label": "", "link": "" } From 62ef82ebbd95c8bb224fe2cc562a85b06a333c98 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 08:39:06 +0000 Subject: [PATCH 087/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- assets/section-multicolumn.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/section-multicolumn.css b/assets/section-multicolumn.css index bb407542a76..2a60d3ac71b 100644 --- a/assets/section-multicolumn.css +++ b/assets/section-multicolumn.css @@ -58,6 +58,7 @@ margin-top: 0; margin-bottom: 0; padding: 0; + display: block; } .multicolumn-list__item:only-child { From 518dec9b289515b4645bfb3617bba7804b248d69 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 08:39:20 +0000 Subject: [PATCH 088/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- assets/section-multicolumn.css | 1 - 1 file changed, 1 deletion(-) diff --git a/assets/section-multicolumn.css b/assets/section-multicolumn.css index 2a60d3ac71b..bb407542a76 100644 --- a/assets/section-multicolumn.css +++ b/assets/section-multicolumn.css @@ -58,7 +58,6 @@ margin-top: 0; margin-bottom: 0; padding: 0; - display: block; } .multicolumn-list__item:only-child { From 9b95f03be380a08805557588ed759b802049485e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 08:40:08 +0000 Subject: [PATCH 089/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- assets/section-multicolumn.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/section-multicolumn.css b/assets/section-multicolumn.css index bb407542a76..b2f0c7e53d5 100644 --- a/assets/section-multicolumn.css +++ b/assets/section-multicolumn.css @@ -203,6 +203,7 @@ .multicolumn-card { position: relative; box-sizing: border-box; + display: block; } .multicolumn-card > .multicolumn-card__image-wrapper--full-width:not(.multicolumn-card-spacing) { From 5dfc68a596468f2cf70390ffdb4a6131dc3f171f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 08:48:22 +0000 Subject: [PATCH 090/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.json | 54 --------------------------------------- 1 file changed, 54 deletions(-) diff --git a/templates/collection.json b/templates/collection.json index d734e79df17..47f7186364a 100644 --- a/templates/collection.json +++ b/templates/collection.json @@ -20,59 +20,6 @@ "color_scheme": "scheme-4046f9b6-371a-43a3-b466-a7fa9d2d47d2" } }, - "multicolumn_ATfHq8": { - "type": "multicolumn", - "blocks": { - "column_NfcWEm": { - "type": "column", - "settings": { - "title": "", - "text": "

Cuscini<\/h2>", - "link_label": "", - "link": "" - } - }, - "column_xamkBh": { - "type": "column", - "settings": { - "title": "", - "text": "

Palid<\/h2>", - "link_label": "", - "link": "" - } - }, - "column_fNdN8r": { - "type": "column", - "settings": { - "title": "", - "text": "

Tappeti<\/h2>", - "link_label": "", - "link": "" - } - } - }, - "block_order": [ - "column_NfcWEm", - "column_xamkBh", - "column_fNdN8r" - ], - "settings": { - "title": "", - "heading_size": "h1", - "image_width": "full", - "image_ratio": "adapt", - "columns_desktop": 3, - "column_alignment": "left", - "background_style": "primary", - "button_label": "Etichetta pulsante", - "button_link": "", - "color_scheme": "", - "columns_mobile": "1", - "swipe_on_mobile": false, - "padding_top": 36, - "padding_bottom": 36 - } - }, "product-grid": { "type": "main-collection-product-grid", "settings": { @@ -96,7 +43,6 @@ }, "order": [ "banner", - "multicolumn_ATfHq8", "product-grid" ] } From 942eefeee6502f20e0d5d536bd4277c174640aa1 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 08:59:39 +0000 Subject: [PATCH 091/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.json b/templates/index.json index 595e9291701..affa346ba42 100644 --- a/templates/index.json +++ b/templates/index.json @@ -93,7 +93,7 @@ "text_kY63iq": { "type": "text", "settings": { - "text": "

Un incontro totalmente nuovo conforme e bellezza ispirate alla classicità.<\/p>" + "text": "

Un incontro totalmente nuovo con forme e bellezza ispirate alla classicità...<\/p>" } } }, From ac9c178656ab509e13e612b943bf149b14b53e8a Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:59:52 +0000 Subject: [PATCH 092/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/product.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/product.json b/templates/product.json index c3e231a1d2d..b5e59377da0 100644 --- a/templates/product.json +++ b/templates/product.json @@ -132,7 +132,7 @@ "settings": { "heading": "Potrebbe piacerti anche...", "heading_size": "h2", - "products_to_show": 5, + "products_to_show": 10, "columns_desktop": 5, "color_scheme": "scheme-1", "image_ratio": "square", From 4c7df3ace081a3ea5df71a6f76f07aec847aaf17 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:28:12 +0000 Subject: [PATCH 093/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index affa346ba42..05a7e16b808 100644 --- a/templates/index.json +++ b/templates/index.json @@ -17,7 +17,7 @@ "settings": { "image": "shopify:\/\/shop_images\/Bitossi-home-piatti-petalo-2.webp", "title": "BITOSSI HOME<\/strong>", - "text": "

Piatti Petalo<\/strong><\/p>", + "text": "

Piatti Petalo<\/strong><\/h2>", "link_label": "", "link": "shopify:\/\/collections\/bitossi-home-petalo-bitossi-home" } @@ -27,7 +27,7 @@ "settings": { "image": "shopify:\/\/shop_images\/KnIndustrie-bicchieri.webp", "title": "KNIDUSTRIE<\/strong>", - "text": "

I Bicchieri<\/strong><\/p>", + "text": "

I Bicchieri<\/strong><\/h2>", "link_label": "", "link": "shopify:\/\/collections\/knindustrie-catalogo-prodotti-bicchieri" } From 9d8c04bcfcf9c70013d95071a6abc0ff6e1a8c6c Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:55:16 +0000 Subject: [PATCH 094/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.knindustrie.json | 38 +++++++++++++++++++++------ 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/templates/collection.knindustrie.json b/templates/collection.knindustrie.json index 3290ab59e84..156475d79eb 100644 --- a/templates/collection.knindustrie.json +++ b/templates/collection.knindustrie.json @@ -1,8 +1,19 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "banner": { "type": "main-collection-banner", - "custom_css": ["a {color: #598db2;}"], + "custom_css": [ + "a {color: #598db2;}" + ], "settings": { "show_collection_description": true, "show_collection_image": false, @@ -16,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

ABCT

Beyond Basic

Bicchieri

Coltelli Be Knife

Davide Oldani

", + "text": "

ABCT<\/a><\/h4>

Beyond Basic<\/a><\/h4>

Bicchieri<\/a><\/h4>

Coltelli Be Knife<\/a><\/h4>

Davide Oldani<\/a><\/h4>", "link_label": "", "link": "" } @@ -25,7 +36,7 @@ "type": "column", "settings": { "title": "", - "text": "

Schönhuber-Franchi

Foo'D

Glocal

Lara Caffi

Lunch Layers

", + "text": "

Schönhuber-Franchi<\/a><\/h4>

Foo'D<\/a><\/h4>

Glocal<\/a><\/h4>

Lara Caffi<\/a><\/h4>

Lunch Layers<\/a><\/h4>", "link_label": "", "link": "" } @@ -34,7 +45,7 @@ "type": "column", "settings": { "title": "", - "text": "

Norma

Pentole a Induzione

Piatti

Piero Lissoni

Posate

", + "text": "

Norma<\/a><\/h4>

Pentole a Induzione<\/a><\/h4>

Piatti<\/a><\/h4>

Piero Lissoni<\/a><\/h4>

Posate<\/a><\/h4>", "link_label": "", "link": "" } @@ -43,14 +54,21 @@ "type": "column", "settings": { "title": "", - "text": "

Stone Work

Taglieri e Workstation

Vassoi

Wok, Tajine, Teppanyaki

Promo

", + "text": "

Stone Work<\/a><\/h4>

Taglieri e Workstation<\/a><\/h4>

Vassoi<\/a><\/h4>

Wok, Tajine, Teppanyaki<\/a><\/h4>

Padele Black <\/a><\/h4>", "link_label": "", "link": "" } } }, - "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_DVyMJx"], - "custom_css": [], + "block_order": [ + "column_PgEVHi", + "column_pqxUGY", + "column_gPeEtt", + "column_DVyMJx" + ], + "custom_css": [ + + ], "settings": { "title": "Scopri tutte le Collezioni KnIndustrie", "heading_size": "h2", @@ -89,5 +107,9 @@ } } }, - "order": ["banner", "multicolumn_MxLddP", "product-grid"] + "order": [ + "banner", + "multicolumn_MxLddP", + "product-grid" + ] } From e9dc2aadb6157e7f2f5cc9382ee5c075188f0511 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:55:54 +0000 Subject: [PATCH 095/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.knindustrie.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.knindustrie.json b/templates/collection.knindustrie.json index 156475d79eb..2417dddc3a9 100644 --- a/templates/collection.knindustrie.json +++ b/templates/collection.knindustrie.json @@ -54,7 +54,7 @@ "type": "column", "settings": { "title": "", - "text": "

Stone Work<\/a><\/h4>

Taglieri e Workstation<\/a><\/h4>

Vassoi<\/a><\/h4>

Wok, Tajine, Teppanyaki<\/a><\/h4>

Padele Black <\/a><\/h4>", + "text": "

Stone Work<\/a><\/h4>

Taglieri e Workstation<\/a><\/h4>

Vassoi<\/a><\/h4>

Wok, Tajine, Teppanyaki<\/a><\/h4>

Padelle e Tegami Black <\/a><\/h4>", "link_label": "", "link": "" } From 980303792b7015d8484bb26e1e29faf73ace849f Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:02:50 +0000 Subject: [PATCH 096/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.knindustrie.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.knindustrie.json b/templates/collection.knindustrie.json index 2417dddc3a9..2257f3e93b5 100644 --- a/templates/collection.knindustrie.json +++ b/templates/collection.knindustrie.json @@ -54,7 +54,7 @@ "type": "column", "settings": { "title": "", - "text": "

Stone Work<\/a><\/h4>

Taglieri e Workstation<\/a><\/h4>

Vassoi<\/a><\/h4>

Wok, Tajine, Teppanyaki<\/a><\/h4>

Padelle e Tegami Black <\/a><\/h4>", + "text": "

Pentole Stone Work<\/a><\/h4>

Taglieri e Workstation<\/a><\/h4>

Vassoi<\/a><\/h4>

Wok, Tajine, Teppanyaki<\/a><\/h4>

Padelle e Tegami Black <\/a><\/h4>", "link_label": "", "link": "" } From 49aedf771d9e2024842210be42993d9e5a98f426 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:06:13 +0000 Subject: [PATCH 097/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.knindustrie.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.knindustrie.json b/templates/collection.knindustrie.json index 2257f3e93b5..1f7424db7ed 100644 --- a/templates/collection.knindustrie.json +++ b/templates/collection.knindustrie.json @@ -27,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

ABCT<\/a><\/h4>

Beyond Basic<\/a><\/h4>

Bicchieri<\/a><\/h4>

Coltelli Be Knife<\/a><\/h4>

Davide Oldani<\/a><\/h4>", + "text": "

ABCT<\/a><\/h4>

Beyond Basic<\/a><\/h4>

Bicchieri<\/a><\/h4>

Coltelli Be Knife<\/a><\/h4>

Davide Oldani<\/a><\/h4>

Terracotta Crete<\/a><\/h4>", "link_label": "", "link": "" } From 8d9fb2c660f4c67474e256a90450f4175d268e82 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:08:10 +0000 Subject: [PATCH 098/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.knindustrie.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.knindustrie.json b/templates/collection.knindustrie.json index 1f7424db7ed..41a28405a31 100644 --- a/templates/collection.knindustrie.json +++ b/templates/collection.knindustrie.json @@ -36,7 +36,7 @@ "type": "column", "settings": { "title": "", - "text": "

Schönhuber-Franchi<\/a><\/h4>

Foo'D<\/a><\/h4>

Glocal<\/a><\/h4>

Lara Caffi<\/a><\/h4>

Lunch Layers<\/a><\/h4>", + "text": "

Schönhuber-Franchi<\/a><\/h4>

Foo'D<\/a><\/h4>

Glocal<\/a><\/h4>

Lara Caffi<\/a><\/h4>

Lunch Layers<\/a><\/h4>

Experimental Cocktail<\/a><\/h4>", "link_label": "", "link": "" } From f8864cb0c381f2eb427bcb368d83cf57de900d8e Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:18:46 +0000 Subject: [PATCH 099/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.SELETTI.json | 35 ++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/templates/collection.SELETTI.json b/templates/collection.SELETTI.json index d0eae1e635c..6f44adef337 100644 --- a/templates/collection.SELETTI.json +++ b/templates/collection.SELETTI.json @@ -1,8 +1,19 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "banner": { "type": "main-collection-banner", - "custom_css": ["a {color: #598db2;}"], + "custom_css": [ + "a {color: #598db2;}" + ], "settings": { "show_collection_description": true, "show_collection_image": false, @@ -16,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

NEW! Classics on Acid

NEW! Magna Graecia

Hybrid

Seletti + Marcantonio

", + "text": "

NEW! Classics on Acid<\/a><\/h4>

NEW! Magna Graecia<\/a><\/h4>

Collezione Hybrid<\/a><\/h4>

Seletti + Marcantonio<\/a><\/h4>", "link_label": "", "link": "" } @@ -25,7 +36,7 @@ "type": "column", "settings": { "title": "", - "text": "

Estetico Quotidiano

I-Wares

Diesel Living

Seletti wears Toiletpaper

", + "text": "

Estetico Quotidiano<\/a><\/h4>

I-Wares<\/a><\/h4>

Diesel Living<\/a><\/h4>

Seletti wears Toiletpaper<\/a><\/h4>", "link_label": "", "link": "" } @@ -34,14 +45,20 @@ "type": "column", "settings": { "title": "", - "text": "

Kintsugi

Memorabilia

Sanding Animals

Blow by Job

", + "text": "

Kintsugi<\/a><\/h4>

Memorabilia<\/a><\/h4>

Sanding Animals<\/a><\/h4>

Blow by Job<\/a><\/h4>", "link_label": "", "link": "" } } }, - "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt"], - "custom_css": [], + "block_order": [ + "column_PgEVHi", + "column_pqxUGY", + "column_gPeEtt" + ], + "custom_css": [ + + ], "settings": { "title": "Scopri tutte le Collezioni Seletti", "heading_size": "h2", @@ -80,5 +97,9 @@ } } }, - "order": ["banner", "multicolumn_MxLddP", "product-grid"] + "order": [ + "banner", + "multicolumn_MxLddP", + "product-grid" + ] } From 4608fadd57aca9375cf3ee3b224d908736e90db4 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:21:36 +0000 Subject: [PATCH 100/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.SELETTI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.SELETTI.json b/templates/collection.SELETTI.json index 6f44adef337..df0b6650559 100644 --- a/templates/collection.SELETTI.json +++ b/templates/collection.SELETTI.json @@ -27,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

NEW! Classics on Acid<\/a><\/h4>

NEW! Magna Graecia<\/a><\/h4>

Collezione Hybrid<\/a><\/h4>

Seletti + Marcantonio<\/a><\/h4>", + "text": "

NEW! Classics on Acid<\/a><\/h4>

NEW! Magna Graecia<\/a><\/h4>

Collezione Hybrid<\/a><\/h4>

Piatti Hybrid<\/strong><\/a><\/h4>

Seletti + Marcantonio<\/a><\/h4>", "link_label": "", "link": "" } From 207c6cca06034cb65259f27ea80dd4dee0961805 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:21:49 +0000 Subject: [PATCH 101/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.SELETTI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.SELETTI.json b/templates/collection.SELETTI.json index df0b6650559..b010c32e5ee 100644 --- a/templates/collection.SELETTI.json +++ b/templates/collection.SELETTI.json @@ -27,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

NEW! Classics on Acid<\/a><\/h4>

NEW! Magna Graecia<\/a><\/h4>

Collezione Hybrid<\/a><\/h4>

Piatti Hybrid<\/strong><\/a><\/h4>

Seletti + Marcantonio<\/a><\/h4>", + "text": "

NEW! Classics on Acid<\/a><\/h4>

NEW! Magna Graecia<\/a><\/h4>

Collezione Hybrid<\/a><\/h4>

Piatti Hybrid<\/a><\/h4>

Seletti + Marcantonio<\/a><\/h4>", "link_label": "", "link": "" } From d6f416ced0baa87135b7c52c7270c9e69eb0972d Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:23:27 +0000 Subject: [PATCH 102/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.SELETTI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.SELETTI.json b/templates/collection.SELETTI.json index b010c32e5ee..160ecce593c 100644 --- a/templates/collection.SELETTI.json +++ b/templates/collection.SELETTI.json @@ -45,7 +45,7 @@ "type": "column", "settings": { "title": "", - "text": "

Kintsugi<\/a><\/h4>

Memorabilia<\/a><\/h4>

Sanding Animals<\/a><\/h4>

Blow by Job<\/a><\/h4>", + "text": "

Kintsugi<\/a><\/h4>

Memorabilia<\/a><\/h4>

Sanding Animals<\/a><\/h4>

Blow by Job<\/a><\/h4>

Natale Con Seletti<\/a><\/h4>", "link_label": "", "link": "" } From 9db9177976fdc6d8e07b1f1d71748c3b808bb7f3 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:28:07 +0000 Subject: [PATCH 103/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.brabantia.json | 47 ++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/templates/collection.brabantia.json b/templates/collection.brabantia.json index 650796b0324..d54a5c89e06 100644 --- a/templates/collection.brabantia.json +++ b/templates/collection.brabantia.json @@ -1,8 +1,19 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "banner": { "type": "main-collection-banner", - "custom_css": ["a {color: #598db2;}"], + "custom_css": [ + "a {color: #598db2;}" + ], "settings": { "show_collection_description": true, "show_collection_image": false, @@ -16,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

Make&Take

", + "text": "

Make&Take<\/a><\/h4>", "link_label": "", "link": "" } @@ -25,18 +36,36 @@ "type": "column", "settings": { "title": "", - "text": "

Pattumiere e Cestini

", + "text": "

Pattumiere e Cestini<\/a><\/h4>

<\/h4>", + "link_label": "", + "link": "" + } + }, + "column_gPeEtt": { + "type": "column", + "settings": { + "title": "", + "text": "

Stendibiancheria e Portabiancheria<\/a><\/h4>", "link_label": "", "link": "" } }, - "column_gPeEtt": { "type": "column", "settings": { "title": "", "text": "", "link_label": "", "link": "" } }, "column_rpy7eJ": { "type": "column", - "settings": { "title": "", "text": "

", "link_label": "", "link": "" } + "settings": { + "title": "", + "text": "

<\/p>

<\/h4>", + "link_label": "", + "link": "" + } } }, - "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_rpy7eJ"], + "block_order": [ + "column_PgEVHi", + "column_pqxUGY", + "column_gPeEtt", + "column_rpy7eJ" + ], "settings": { "title": "Scopri tutte le Collezioni Brabantia", "heading_size": "h2", @@ -75,5 +104,9 @@ } } }, - "order": ["banner", "multicolumn_MxLddP", "product-grid"] + "order": [ + "banner", + "multicolumn_MxLddP", + "product-grid" + ] } From a873983e6b453ae2d56e0b16c50340b8da89d5fb Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:53:11 +0000 Subject: [PATCH 104/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.knindustrie.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.knindustrie.json b/templates/collection.knindustrie.json index 41a28405a31..ac1856f1cf0 100644 --- a/templates/collection.knindustrie.json +++ b/templates/collection.knindustrie.json @@ -45,7 +45,7 @@ "type": "column", "settings": { "title": "", - "text": "

Norma<\/a><\/h4>

Pentole a Induzione<\/a><\/h4>

Piatti<\/a><\/h4>

Piero Lissoni<\/a><\/h4>

Posate<\/a><\/h4>", + "text": "

Norma<\/a><\/h4>

Pentole a Induzione<\/a><\/h4>

Piatti<\/a><\/h4>

Piero Lissoni<\/a><\/h4>

Posate<\/a><\/h4>

Pentole Back Up<\/a><\/h4>", "link_label": "", "link": "" } From 2f92c231cff7b58c2ed1931f478a4aea92a4a0f2 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 06:44:07 +0000 Subject: [PATCH 105/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index c93bca364c9..91f79806ec2 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -209,7 +209,7 @@ "title": "", "text": "

Marinette<\/p>", "link_label": "", - "link": "" + "link": "shopify:\/\/collections\/marinette-saint-tropez" } }, "column_JQe8X6": { From a7a94e2cf32a0789528007594a783bf0690bb8d9 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 06:46:23 +0000 Subject: [PATCH 106/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/page.brand.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/page.brand.json b/templates/page.brand.json index 91f79806ec2..fa1b8bc851a 100644 --- a/templates/page.brand.json +++ b/templates/page.brand.json @@ -207,7 +207,7 @@ "settings": { "image": "shopify:\/\/shop_images\/Marinette.webp", "title": "", - "text": "

Marinette<\/p>", + "text": "

Marinette<\/a><\/h4>", "link_label": "", "link": "shopify:\/\/collections\/marinette-saint-tropez" } From 3a1b56b841c6e78ce69ea427bd235d0f4c342d82 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 08:42:44 +0000 Subject: [PATCH 107/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.json b/templates/index.json index 05a7e16b808..affa346ba42 100644 --- a/templates/index.json +++ b/templates/index.json @@ -17,7 +17,7 @@ "settings": { "image": "shopify:\/\/shop_images\/Bitossi-home-piatti-petalo-2.webp", "title": "BITOSSI HOME<\/strong>", - "text": "

Piatti Petalo<\/strong><\/h2>", + "text": "

Piatti Petalo<\/strong><\/p>", "link_label": "", "link": "shopify:\/\/collections\/bitossi-home-petalo-bitossi-home" } @@ -27,7 +27,7 @@ "settings": { "image": "shopify:\/\/shop_images\/KnIndustrie-bicchieri.webp", "title": "KNIDUSTRIE<\/strong>", - "text": "

I Bicchieri<\/strong><\/h2>", + "text": "

I Bicchieri<\/strong><\/p>", "link_label": "", "link": "shopify:\/\/collections\/knindustrie-catalogo-prodotti-bicchieri" } From f572a5fdf1de0263ba0238e86c9c699fddac8459 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 10:28:50 +0000 Subject: [PATCH 108/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.bitossi-home.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.bitossi-home.json b/templates/collection.bitossi-home.json index 790f15f7b25..4d389cc2583 100644 --- a/templates/collection.bitossi-home.json +++ b/templates/collection.bitossi-home.json @@ -54,7 +54,7 @@ "type": "column", "settings": { "title": "", - "text": "

Demodè<\/a><\/h4>

Piatti Petalo<\/a><\/h4>

<\/h4>", + "text": "

Demodè<\/a><\/h4>

Piatti Petalo<\/a><\/h4>

Clessidre <\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } From ac0975913aef73cfaa2418b93ac747a4d97a7ba8 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 10:32:54 +0000 Subject: [PATCH 109/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.bitossi-home.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.bitossi-home.json b/templates/collection.bitossi-home.json index 4d389cc2583..78930e570e3 100644 --- a/templates/collection.bitossi-home.json +++ b/templates/collection.bitossi-home.json @@ -54,7 +54,7 @@ "type": "column", "settings": { "title": "", - "text": "

Demodè<\/a><\/h4>

Piatti Petalo<\/a><\/h4>

Clessidre <\/a><\/h4>

<\/h4>", + "text": "

Demodè<\/a><\/h4>

Piatti Petalo<\/a><\/h4>

Clessidre <\/a><\/h4>

<\/h4>

<\/h4>", "link_label": "", "link": "" } From 23f1cef4112ca57333ba2d299d9c671f51e0ace2 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 10:38:07 +0000 Subject: [PATCH 110/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.bitossi-home.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/collection.bitossi-home.json b/templates/collection.bitossi-home.json index 78930e570e3..7ecef3fed2b 100644 --- a/templates/collection.bitossi-home.json +++ b/templates/collection.bitossi-home.json @@ -54,7 +54,7 @@ "type": "column", "settings": { "title": "", - "text": "

Demodè<\/a><\/h4>

Piatti Petalo<\/a><\/h4>

Clessidre <\/a><\/h4>

<\/h4>

<\/h4>", + "text": "

Demodè<\/a><\/h4>

Piatti Petalo<\/a><\/h4>

Clessidre <\/a><\/h4>

Natale Con Bitossi Home<\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } From dfdcdad47f47e9419eb51d83b13914cf66f64ce6 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:04:07 +0000 Subject: [PATCH 111/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.brandani.json | 34 ++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/templates/collection.brandani.json b/templates/collection.brandani.json index f290d277e92..1047703d206 100644 --- a/templates/collection.brandani.json +++ b/templates/collection.brandani.json @@ -1,8 +1,19 @@ +/* +* ------------------------------------------------------------ +* IMPORTANT: The contents of this file are auto-generated. +* +* This file may be updated by the Shopify admin theme editor +* or related systems. Please exercise caution as any changes +* made to this file may be overwritten. +* ------------------------------------------------------------ +*/ { "sections": { "banner": { "type": "main-collection-banner", - "custom_css": ["a {color: #598db2;}"], + "custom_css": [ + "a {color: #598db2;}" + ], "settings": { "show_collection_description": true, "show_collection_image": false, @@ -16,7 +27,7 @@ "type": "column", "settings": { "title": "", - "text": "

Antipastiere

Bicchieri e Calici

Bilance da Cucina

Coltelli

Lampade e Lanterne

Orologi

", + "text": "

Antipastiere<\/a><\/h4>

Bicchieri e Calici<\/a><\/h4>

Bilance da Cucina<\/a><\/h4>

Coltelli<\/a><\/h4>

Lampade e Lanterne<\/a><\/h4>

Orologi<\/a><\/h4>

<\/h4>

<\/p>", "link_label": "", "link": "" } @@ -25,7 +36,7 @@ "type": "column", "settings": { "title": "", - "text": "

Tazze, Tazzine e Mug

Terracotta

Vassoi

Posate

Piatti

Filodoro

", + "text": "

Tazze, Tazzine e Mug<\/a><\/h4>

Terracotta<\/a><\/h4>

Vassoi<\/a><\/h4>

Posate<\/a><\/h4>

Piatti<\/a><\/h4>

Filodoro<\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } @@ -34,7 +45,7 @@ "type": "column", "settings": { "title": "", - "text": "

Sinfonia

Fiori di Campo

Flora

Le Cementine

Limoni

Total White

", + "text": "

Sinfonia<\/a><\/h4>

Fiori di Campo<\/a><\/h4>

Flora<\/a><\/h4>

Le Cementine<\/a><\/h4>

Limoni<\/a><\/h4>

Total White<\/a><\/h4>", "link_label": "", "link": "" } @@ -43,13 +54,18 @@ "type": "column", "settings": { "title": "", - "text": "

Medicea

Pomo

Shanti

Punto Oro

Sottobosco

Schiaccianoci

", + "text": "

Medicea<\/a><\/h4>

Pomo<\/a><\/h4>

Shanti<\/a><\/h4>

Punto Oro<\/a><\/h4>

Sottobosco<\/a><\/h4>

Schiaccianoci<\/a><\/h4>

Chicchi & Balocchi <\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } } }, - "block_order": ["column_PgEVHi", "column_pqxUGY", "column_gPeEtt", "column_rpy7eJ"], + "block_order": [ + "column_PgEVHi", + "column_pqxUGY", + "column_gPeEtt", + "column_rpy7eJ" + ], "settings": { "title": "Scopri tutte le Collezioni Brandani", "heading_size": "h2", @@ -88,5 +104,9 @@ } } }, - "order": ["banner", "multicolumn_MxLddP", "product-grid"] + "order": [ + "banner", + "multicolumn_MxLddP", + "product-grid" + ] } From 49b3dd8a51eab7dcdddee89fa3538c560dc34d7b Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 14:06:24 +0000 Subject: [PATCH 112/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/collection.brandani.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/collection.brandani.json b/templates/collection.brandani.json index 1047703d206..a15c52a7049 100644 --- a/templates/collection.brandani.json +++ b/templates/collection.brandani.json @@ -36,7 +36,7 @@ "type": "column", "settings": { "title": "", - "text": "

Tazze, Tazzine e Mug<\/a><\/h4>

Terracotta<\/a><\/h4>

Vassoi<\/a><\/h4>

Posate<\/a><\/h4>

Piatti<\/a><\/h4>

Filodoro<\/a><\/h4>

<\/h4>", + "text": "

Tazze, Tazzine e Mug<\/a><\/h4>

Terracotta<\/a><\/h4>

Vassoi<\/a><\/h4>

Posate<\/a><\/h4>

Piatti<\/a><\/h4>

Filodoro<\/a><\/h4>

Le Bacche<\/a><\/h4>

<\/h4>", "link_label": "", "link": "" } @@ -45,7 +45,7 @@ "type": "column", "settings": { "title": "", - "text": "

Sinfonia<\/a><\/h4>

Fiori di Campo<\/a><\/h4>

Flora<\/a><\/h4>

Le Cementine<\/a><\/h4>

Limoni<\/a><\/h4>

Total White<\/a><\/h4>", + "text": "

Sinfonia<\/a><\/h4>

Fiori di Campo<\/a><\/h4>

Flora<\/a><\/h4>

Le Cementine<\/a><\/h4>

Limoni<\/a><\/h4>

Total White<\/a><\/h4>

Tempo di Festa<\/a><\/h4>", "link_label": "", "link": "" } From 747882d31a0f89501c1a35344c4eff44c88bf4f4 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:38:03 +0000 Subject: [PATCH 113/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/product.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/product.json b/templates/product.json index b5e59377da0..7cb68e78b97 100644 --- a/templates/product.json +++ b/templates/product.json @@ -37,7 +37,7 @@ "custom_liquid_tm8pXP": { "type": "custom_liquid", "settings": { - "custom_liquid": "{{ product.metafields.custom.short_description }}" + "custom_liquid": "{{ product.metafields.custom.short_description | newline_to_br }}" } }, "qty_disclaimer_6icb8M": { From db9c18d76ae2313679c5a8643bda4317748456f8 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:13:10 +0000 Subject: [PATCH 114/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/robots.txt.liquid | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/robots.txt.liquid diff --git a/templates/robots.txt.liquid b/templates/robots.txt.liquid new file mode 100644 index 00000000000..c9bf58cefba --- /dev/null +++ b/templates/robots.txt.liquid @@ -0,0 +1,15 @@ +# we use Shopify as our ecommerce platform +{%- comment -%} +# Caution! Please read https://help.shopify.com/en/manual/promoting-marketing/seo/editing-robots-txt before proceeding to make changes to this file. +{% endcomment %} +{% for group in robots.default_groups %} + {{- group.user_agent -}} + + {% for rule in group.rules %} + {{- rule -}} + {% endfor %} + + {%- if group.sitemap != blank -%} + {{ group.sitemap }} + {%- endif -%} +{% endfor %} From 81d6e1035b839e37577167f0e652ac7d28f8f690 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:17:16 +0000 Subject: [PATCH 115/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/robots.txt.liquid | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/templates/robots.txt.liquid b/templates/robots.txt.liquid index c9bf58cefba..7835af9523f 100644 --- a/templates/robots.txt.liquid +++ b/templates/robots.txt.liquid @@ -9,6 +9,21 @@ {{- rule -}} {% endfor %} + {%- if group.user_agent.value == '*' -%} + {{ 'Disallow: /*cat=' }} + {{ 'Disallow: /*price=' }} + {{ 'Disallow: /*brand_produttore=' }} + {{ 'Disallow: /*dimensione=' }} + {{ 'Disallow: /*tipo=' }} + {{ 'Disallow: /*collezione=' }} + {{ 'Disallow: /*ideale_per=' }} + {{ 'Disallow: /*colore=' }} + {{ 'Disallow: /*fragranza=' }} + {{ 'Disallow: /customer/' }} + {{ 'Disallow: /checkout/' }} + {{ 'Disallow: /catalogsearch/' }} + {%- endif -%} + {%- if group.sitemap != blank -%} {{ group.sitemap }} {%- endif -%} From 4fe022ed745ee1265ad2a0faa940cb83ac7d4e19 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:17:32 +0000 Subject: [PATCH 116/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- templates/robots.txt.liquid | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/templates/robots.txt.liquid b/templates/robots.txt.liquid index 7835af9523f..d167944ccae 100644 --- a/templates/robots.txt.liquid +++ b/templates/robots.txt.liquid @@ -10,18 +10,18 @@ {% endfor %} {%- if group.user_agent.value == '*' -%} - {{ 'Disallow: /*cat=' }} - {{ 'Disallow: /*price=' }} - {{ 'Disallow: /*brand_produttore=' }} - {{ 'Disallow: /*dimensione=' }} - {{ 'Disallow: /*tipo=' }} - {{ 'Disallow: /*collezione=' }} - {{ 'Disallow: /*ideale_per=' }} - {{ 'Disallow: /*colore=' }} - {{ 'Disallow: /*fragranza=' }} - {{ 'Disallow: /customer/' }} - {{ 'Disallow: /checkout/' }} - {{ 'Disallow: /catalogsearch/' }} +{{ 'Disallow: /*cat=' }} +{{ 'Disallow: /*price=' }} +{{ 'Disallow: /*brand_produttore=' }} +{{ 'Disallow: /*dimensione=' }} +{{ 'Disallow: /*tipo=' }} +{{ 'Disallow: /*collezione=' }} +{{ 'Disallow: /*ideale_per=' }} +{{ 'Disallow: /*colore=' }} +{{ 'Disallow: /*fragranza=' }} +{{ 'Disallow: /customer/' }} +{{ 'Disallow: /checkout/' }} +{{ 'Disallow: /catalogsearch/' }} {%- endif -%} {%- if group.sitemap != blank -%} From e81d0d785bb94d50be051a12028b1dc5afdb7ca1 Mon Sep 17 00:00:00 2001 From: "shopify[bot]" <79544226+shopify[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:27:58 +0000 Subject: [PATCH 117/117] Update from Shopify for theme dawn/main Committed from shop: Unico & Multiplo --- snippets/pagination.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/pagination.liquid b/snippets/pagination.liquid index cf5ac226dd1..587a8cee7c7 100644 --- a/snippets/pagination.liquid +++ b/snippets/pagination.liquid @@ -35,7 +35,7 @@
  • {%- if part.is_link -%}