Daybrush (Younkue Choi)

Results 720 comments of Daybrush (Younkue Choi)

@Raserad Use `scrollable` and `scroll`, `scrollGroup` events ```js onScrollGroup={({ scrollContainer, direction }) => { scrollContainer.scrollBy(direction[0] * 10, direction[1] * 10); }} ```

@AlexxIV Is the guideline working but invisible? or Does the guideline work according to the keyboard? For the latter, use the following code: ```jsx verticalGuidelines={isKeydown ? [0, 100, 200] :...

@alexconstantin Sorry, snap does not work for requests.

@born2net If the jsx part is changed to js, it can be used in any framework. Other framework demos are in preparation. ```js const Editable = { name: "editable", props:...

@GrigoreAlexandru In fact, floating point is a persistent problem in browsers. What I can suggest is the throttleScale and throttleResize props that use round instead of trunc.

@mamsoudi I'm sorry. This is not possible during the event. We need to modify the resize event for the text area. But I don't know if this problem will be...

@MiiZZo It seems to be an issue worth considering. I am making reference to various design apps. Let's fix this problem.

@ngocducdim sorry but you can't use moveable.setState You must use the target={target} prop.

@ngocducdim I'll add waitToChangeTarget method for dragStart. ```jsx moveable.waitToChangeTarget().then(() => { moveable.dragStart(e); }); setTarget(target); ```

@ngocducdim moveable's new version is released. `waitToChangeTarget` method is added. ```jsx moveable.waitToChangeTarget().then(() => { moveable.dragStart(e); }); setTarget(target); ```