Llorenç Pujol Ferriol

Results 64 comments of Llorenç Pujol Ferriol

Hi @arnoudb and @sabasojoodi I am looking into this issue again. Your problem seems to be the same as described on this links (there are way more related on internet,...

I think what you are describing is the ability to have "**static**" grid items. This feature is listed in the TODO [list](https://github.com/katoid/angular-grid-layout#todo-features), but it is currently **not** implemented. The good...

I created a [Draft PR](https://github.com/katoid/angular-grid-layout/pull/94) for this feature. It would be nice if you could test it. That said, I am not fully convinced of how it is working right...

@Duckelekuuk Yes, that is the intention. There is just one bug pending related to this refactor: https://github.com/katoid/angular-grid-layout/issues/120 Once it is resolved, I will release a new version. I hope to...

Hi again @sheikalthaf ! Currently, there are no plans to update to Angular 16. This is primarily because AFAIK, if we upgrade to Angular 16, users still with Angular 14...

@Jeredian Agreed, it is time to upgrade Angular Grid Layout to Angular 16 and export it as a standalone component. This way, full standalone apps can import AngularGridLayout. Having said...

Finally! I've been waiting 2 years for someone to open this issue 😆... You are right, It does NOT work on touchscreen laptops right now. Here is the code that...

Thanks @ray-kay ! I have created a Pull Request that just replaces mouse and touch events for pointer events: https://github.com/katoid/angular-grid-layout/pull/90 If you could try it and provide feedback, it would...

Hey @ray-kay ! Thanks for checking it! Yes you're right, there were some issues in my last commit. Now is fixed and should work (all pointer events and `touch-action: none`)....

Thanks for testing @ray-kay ! Yes, old code using mouse and touch events is still used if pointer events are not supported: ```typescript if (!ktdSupportsPointerEvents()) { // Old mouse and...