Robert Einars

Results 81 comments of Robert Einars

I have a similar issue here. https://davidmorrison.ch/ https://ausi.github.io/respimagelint/ reports the `sizes` and `srcset` to be correct. ![image](https://github.com/GoogleChrome/lighthouse/assets/34193243/ee8602a3-012e-4ced-b841-555518f8cf9c) However PageSpeed for Desktop flags it. ![image](https://github.com/GoogleChrome/lighthouse/assets/34193243/989e12f3-0999-4971-a28e-342fb5e649dc) The `sizes` is `(min-width: 2140px) 1984px,...

Using a class that creates the markup for the responsive picture element I managed to create a slide object as mentioned [here](https://photoswipe.com/documentation/responsive-images.html). The slide object is created from the image...

I might open another issue with your kind permission where we can discuss the JS/jQuery bits. I say, no script is as good as no script. Though I like your...

Yeah no my post was never about things I am missing from your plugin, sorry if it comes across like that. I played around a lot with the plugin and...

Interesting development. When you posted that [this is much easier with jQuery](https://github.com/arnowelzel/lightbox-photoswipe/issues/13#issuecomment-594692417) I did not really see what you meant. ``` $('body').on('click', 'a[data-width]:has(img)', function(e) { if(!PhotoSwipe || !PhotoSwipeUI_Default) { return;...

[https://github.com/TanStack/table/pull/5403](https://github.com/TanStack/table/pull/5403)

This is just a heads up for anyone following the current docs on Data Table. I had an [issue](https://github.com/huntabyte/shadcn-svelte/issues/1209) where I wanted to combine pagination and sort with the current...

It might be worth to point out that TanStack Table will not be supported by Svelte 5 out of the box. https://github.com/sveltejs/svelte/issues/10359#issue-2111964532 https://github.com/huntabyte/shadcn-svelte/pull/1260#issuecomment-2325916428 Perhaps it is a good idea to...

Here is a guide to using Svelte 5 with TanStack Table **v8** that @walker-tx put together. **[https://github.com/walker-tx/svelte5-tanstack-table-examples](https://github.com/walker-tx/svelte5-tanstack-table-examples)** [https://github.com/TanStack/table/pull/5403#issuecomment-2400783565](https://github.com/TanStack/table/pull/5403#issuecomment-2400783565) > After some of the questions on Discord and here, I've put...

#### Solution https://github.com/robots4life/shadcn-svelte-data-table/commit/1bdfd9fc1a5b34aa9c8e8c90e3043a3a077fda4b https://github.com/robots4life/shadcn-svelte-data-table/blob/main/src/routes/data-table.svelte#L85-L87 ```ts // pageCount and pageSize must be included even though they are not used // only if pageCount and pageSize are included will sort work correctly...