Taras

Results 103 comments of Taras

I did it with "prependListener" with saving the message in a global variable, but it is a bad solution, so issue will be opened.

It would be good to be able to load bitmaps from memory.

Same issue. Also, when resizing the window, items inside the scroller rerender normally.

I found the cause of the issue. Look at this line: https://github.com/Akryum/vue-virtual-scroller/blob/master/src/components/RecycleScroller.vue#L493 This function returns DOM node scroll event listener should be attached do. So, it uses this package: https://github.com/olahol/scrollparent.js,...

At least, this should be mentioned in "page-mode" description.

So, there can be problem with this dependency tree: - package1 * package2 - package2 If we have parameters, this can became a real problem. This can be solved with...

Conflicting feature sets can be checked by `BUCK` config, it seems that it is easier to implement them there than in buckaroo.

So, we need some condition syntax, for example: ```toml condition = "feature1" # for boolean features condition = "feature >= 5" # for integers/floats/versions condition = "feature == 'abc'" #...

Also, then there should be some way to pass features to BUCK configurations and to use them in some convenient way.

Hmm, how are they peer by default? So I can access some functions of package2 from package1 if I a project depends on package1 and package2?