Martin Skočík

Results 55 comments of Martin Skočík

I would wait with this. I would like to have a11y support fully implemented, but I need to do more research about it

~Also note in docs, that this [polyfill ](https://github.com/ungap/custom-elements#readme) is actualkly needed for webkit~ Irrelevant in v4

Experiencing the same issue. I had svelte app, which includes npm svelte component and it throws this error: ![image](https://user-images.githubusercontent.com/25513620/127176097-afc316df-8e12-456e-893e-434ae1b729d1.png) This is my simplified code snippet: ```svelte /** app.js */ import...

Try downgrading svelte version until it works again. Version `3.39.0` worked fine for me. On 30. 7. 2021 12:01, nullbio wrote: > > I've been racking my brain for the...

@bluwy Cannot duplicate in the REPL neither. But it was happening. It was quite hard to replicate back then. But since when I tried `3.43.1` it **_worked_** for me since...

This would be great. Would be enough to invoke event just before template rendering. ```php // DataGrid.php // line below has been added $this->onBeforeRender($this, $rows); // pass grid and $rows...

You could simplify your solution by calling `setCondition` [(docs)](https://contributte.org/packages/contributte/datagrid/filters.html#custom-where-condition) on your dateFilter and provide custom template with `setTemplate` [(docs)](https://contributte.org/packages/contributte/datagrid/filters.html#templates) like in this snippet: ```php $grid->addFilterDateRange('born', 'Year of birth') // when...

@janosh I would say the virtual grid would use the same principles of what should be displayed at the moment, but in general it's something completely different than simple list....

I came across this one. Maybe I just don't understand it correctly. I would expect, that following code should work: ```php // returns 3 items $existingTags = $target->tags->toCollection()->fetchAll(); // want...

You don't need repro, just use [Yup validation example](https://svelte-forms-lib-sapper-docs.vercel.app/yup) in [svelte REPL](https://svelte.dev/repl) and you get this error. ![image](https://user-images.githubusercontent.com/25513620/189633543-11435368-fdf5-405d-b36e-fa78080f8ced.png)