Marco Polichetti

Results 98 comments of Marco Polichetti

It would be nice to allow passing object as explained in my issue some times ago: https://github.com/symfony/ux/issues/1483. It's not that bad to allow components to talk each other using small...

@smnandre > I mean, as what you want to achieve is 100% what the defer attribute offers... ? The defer will cause a big big layout shift. Sometimes you want...

@smnandre first thank you for helping! I really appreciate. I already have a solution I posted, so the question was really about how to get the `content` block using `outerScope`/`outerBlocks`....

I eventually opted for a much simpler design, avoiding nesting more than two levels deep. Problem solved, much clarity achieved. Feel free to close this issue in order to not...

I just removed one level as @smnandre suggested: ```twig {# template/components/Page/Base.html.twig #} {%- props title = null -%} {% block meta %}{% endblock %} {% if title %} {{ title...

@seb-jean I may be wrong but if you want to refer to block `content` passed to `Link`, and pass it again to `TouchTarget`, you must store in a variable, since...

@smnandre thanks for the idea. Do the hydrateWith / dehydrateWith process occurs also when using `#[LiveArg]`? For what I understand from the docs, it seems that the process is used...

Additional context: `grid-template-columns: minmax(0, 1fr)` seems to solve the problem.