Ardeshir Izadi

Results 61 comments of Ardeshir Izadi

I had the same issue. a temporary hack/workaround could do the job now until issue is fixed. - create an array in controller which contains only one element: `this.recaptchers =...

@munificent? You explicitly mentioned you won't be actively maintaining this repository anymore. But I thought of mentioning you, as I believe this PR is a must-have and helps in reading...

Nice. Encouraging the use of getters can also prevent issues like this from happening more often: https://reactjs.org/docs/hooks-faq.html#why-am-i-seeing-stale-props-or-state-inside-my-function (But, of course, may result in other type of bugs and mis-assumptions to...

Yes @Gnito that's it I think. So it is probably either Webpack's to update something, or react-scripts' to change some config, right?

rebased on this PR: https://github.com/vuejs/v3-migration-guide/pull/59 because pipelines were failing

This would be the minimal reproduction for a Docker container: ``` FROM node:20.18.0-alpine RUN corepack enable RUN echo "use-node-version=20.18.0" > .npmrc # Corepack proceeds to install the (latest) pnpm RUN...

Hi. Thanks for the quick reply. The use case is "snapping". Suppose there is a line or there are two elements I want to snap the tops, or centers together...

Thanks again for the reply. > Anyway you can try to trigger exeDrag once your draggable element came in snapping area. I did not understand this part though. I created...

This is how I "supposed" it might work and ended up calling `exeDrag` inside the `onMoving` callback: - User keeps dragging the draggable shape around - subjx takes care of...