Marco Nalon
Marco Nalon
Hi, I think you can achieve pagination directly in mongoose without effort right now: ```javascript await Model .find(query) .skip(pagination.skip) .limit(pagination.limit) .select(fields) .sort(sort); ```
I'm trying to figure out how this can be implemented. For now, I found two ways to achieve the goal: ### Incrementally adopted implementation A first minor release that adds...
Hi everyone, I started working on the `CUIAutoComplete`+`CUIMultipleAutoComplete` components. Right now I have a working example that I'm already using in one application. It's still a big WIP full of...
Hi everyone, we have done some changes to the `CUIAutoComplete` component and we've tested everything all the week. We need some time to document the new props and add some...
> @it-nalon any updates on this. let me know if you need some assistance Hi @koolamusic, sorry for the delay. I'll restart working on this project this weekend. You can...
Great! Should I make a PR on `dev` branch o similiar? I can make it before the weekend with some instructions in the `README.md` to run everything, but as I...
I had the same issue, I have an UI where every swipable item has a title. Something like that: I tried wrapping the item in a `` but it broke...
> Hey, I was wondering if is there any workaround for this issue? > > I'm struggling to implement this library along with [dnd-kit/sortable](https://docs.dndkit.com/presets/sortable/usesortable). When I tried to wrap the...