akondo06
akondo06
I will give it a shot soon then. Hopefully I'll get back with a PR. From my digging, my guess on what is needed for a horizontal version is to...
Just the horizontal (new example added to the docs): https://github.com/akondo06/vertical-collection/tree/feature/horizontal It works i guess? I didn't bother changing the variable names where I didn't had to :) no tests written...
someone went a bit further than me ... :) https://github.com/html-next/vertical-collection/pull/269/files
@erichonkanen you might get away with some flex-box and a bit of buffer as long as you know how many per row.
@erichonkanen Here's a somewhat working version: https://github.com/akondo06/vertical-collection/commit/9420d5f5a5d5c0d81eb05bdd4e6f5aa164324b0c The `staticHeight` prop must be `false`. There seems to be a problem with the index, that's why it jumps down to `bufferSize *...
Had to do this recently and here's what I ended up with: ``` const picker = new Litepicker({ ... }}; ... picker.on('render:month', (month, date) => { const days = month.querySelector('.container__days');...