ViRuSTriNiTy
ViRuSTriNiTy
A solution that uses a workaround has been posted here: https://github.com/bennypowers/rollup-plugin-lit-css/issues/23 I'm also still trying to find out the right way to do it.
The solution posted above does not seem to work anymore (at least for me) as it seems to target Lit 2.x. I have analyzed the plugin code and its dependencies...
I have given up to solve this after multiple hours of searching the needle in the haystack. You can use https://www.npmjs.com/package/@j1shin/rollup-plugin-lit-sass to achieve what you want, just follow the description...
A possible workaround is selectively fixing this with CSS only: ``` input:not(:-webkit-autofill) { animation-name: none !important; } ``` `input` should be replaced by a more specific selector that only applies...
@DashNY You need to add the polyfill provided by `mobile-drag-drop` as mentioned here: https://github.com/Postlagerkarte/blazor-dragdrop#mobile-devices
Did you try to pass an actual list instance to `Items` instead of creating a list inline with `new`? My assumption is that the Blazor diffing is not working here...
Sorry for the late reply, did not get any message. Just for my understanding: you want use this package but you want to modify the list manually when a drop...
Hi there, can you provide a minimal reproducible example?
The test project is too complex for my taste so I reduced it as much as possible to: ``` @if (context.Type == Model.ITEM_TYPES.SECTION) { @if (context2.Type == Model.ITEM_TYPES.CATEGORY) { @if...
Drag and drop should work on those devices when using a polyfill as mentioned in the `README.md` https://github.com/Postlagerkarte/blazor-dragdrop#mobile-devices