Vincent Vanclef
Vincent Vanclef
Can we get this merged in please? Really need this lol
The inline-block prevents us from having full-width wrapper elements. Im currently using it to wrap around input fields to display a possible error message, but with the inline-block the input...
@dvago Rather curious as to what you events you are talking about, could you ellaborate on what events that are making this package so expensive?
@dvago Well normal html5 drag events trigger just as much as this, and a debounce will give you incorrect drag results as you wont get the actual drag position until...
Ah that makes a lot of sense, thanks @dvago! Was unsure if i was on the right track :P
Will do, ill give that article a read as well!
update: the calcDragLimits uses modulo operators which does not work with floating point numbers, thinking of an alternative
replacing all modulo operations with: findMod(a, b) fixes it: ``` export function roundToNearestDecimals(val: number) { return Math.round(val * 1e2) / 1e2; } export function findMod(a: number, b: number) { let...
Nvm trying to make this work with decimals is a pain haha ill change the way my grid dimensions are calculated
This would be awesome! @antoniandre your package here is already incredible, well done! But as requested here, a horizontal display of time instead of vertical would be amazing!