-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow more htmlClasses #36452
Allow more htmlClasses #36452
Conversation
Hi @barryvdh. Thank you for your contribution
❗ Automated tests can be triggered manually with an appropriate comment:
You can find more information about the builds here ℹ️ Run only required test builds during development. Run all test builds before sending your pull request for review. For more details, review the Magento Contributor Guide documentation. 🕙 You can find the schedule on the Magento Community Calendar page. 📞 The triage of Pull Requests happens in the queue order. If you want to speed up the delivery of your contribution, join the Community Contributions Triage session to discuss the appropriate ticket. ✏️ Feel free to post questions/proposals/feedback related to the Community Contributions Triage process to the corresponding Slack Channel |
Note: |
nice to see some class tailwind arbitrary values variants |
@barryvdh can you make also a new pull for magento/magento2-page-builder#791 |
@in-session can you update your PR as it's not merged yet? |
@barryvdh The following arbitrary values fail with this updated version - Using only one value with no space within the square brackets seems to work however - |
@mattgrul I'm not sure if that class is valid, but maybe we don't need such strict validation and just allow classes with |
Since Tailwind v3.1 you have Arbitrary values but for variants like |
Do we even need validation at that point 😓 |
@barryvdh In some CSS frameworks, the |
Sure thing |
@barryvdh the commit that adds the at (@) sign seems breaks XML parsing:
Error: Unescaped & or non terminated character/entity reference. I've just tested with: |
Nevermind, |
This will also need a change in module-page-builder/view/adminhtml/web/js/form/element/validator-rules-mixin.js though. |
Hi @barryvdh, Thank you for your contribution! I have tried to reproduce this issue in latest magento 2.4-develop, followed below steps, but the issue is not reproducible for us.
Can you please let us know if we are missing anything in order to reproduce. We are waiting for your feedback on above comment too, till then moving it to On hold. Thank you! |
@engcom-Charlie: make sure you are running in I just tested it on a clean Magento from 2.4-develop, steps to reproduce:
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
index 6e24f84f004..136bc5081f7 100644
--- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
+++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
@@ -36,7 +36,7 @@
</referenceBlock>
<referenceContainer name="content">
- <container name="product.info.main" htmlTag="div" htmlClass="product-info-main" before="-">
+ <container name="product.info.main" htmlTag="div" htmlClass="product-info-main w-screen left-1/2 right-1/2 mx-[-50vw] relative md:max-w-2xl" before="-">
<container name="product.info.price" label="Product info auxiliary container" htmlTag="div" htmlClass="product-info-price">
<container name="product.info.stock.sku" label="Product auxiliary info" htmlTag="div" htmlClass="product-info-stock-sku">
<container name="product.info.type" before="-"/>
With the changes proposed here in this PR and another cache flush, the error no longer happens. |
Hi @hostep, Thank you for your guidance and contribution! I have tested this PR as mentioned in above comment, the issue is reproducible and the solution given in this PR is working fine. Followed below steps. ✔️ QA Passed Manual Scenario Steps
Thank you! |
@magento create issue |
Fix #32004 |
Close: magento#38235 discussed in magento#32004 and magento#34430 improved in magento#36452 and magento#34559
Follow-up on #34559
Supports classes like
w-screen left-1/2 right-1/2 mx-[-50vw] relative
as used in Tailwind 3See https://regexr.com/72318 vs https://regexr.com/72315
Resolved issues: