Arsalan Yaldram

Results 97 comments of Arsalan Yaldram

https://www.npmjs.com/package/@react-google-maps/api The above library is a fork of the original `react-google-maps`, which is very well maintained. I think we can use the above library.

- We cannot update your `React package` because the map library we are currently using does not support React 17. So first we have to update our map library. -...

My Rationale behind suggesting this - https://www.npmjs.com/package/@react-google-maps/api library is, it is a forked version of the library we are currently using, so the API will be same for the most...

Technically this is not a Bug, this is how the math works, I have seen the same behaviour in other libraries

We can do the following under `src/mantine-core/src/Slider/utils/get-change-value/get-change-value.ts` - ```javascript return Math.max(Math.min(nextValue, max), min); ``` instead of just ```javascript return nextValue; ```

Also check the following scenario - ```javascript ``` It should go back to 1, but unfortunately sticks at 0. I checked the same behaviour for Material UI Slider it goes...

Also Please check the following scenario for the RangeSlider with minRange = stepSize it does not work - ```javascript ``` Check this example from React Material UI - https://codesandbox.io/s/ph7nci?file=/demo.tsx

Also Please check the following scenario the RangeSlider is stuck at 81 - 100 I am unable to choose a value 91 -100 - ```javascript ```

I would say if we have a non-uniform scale like `min - 1 to max - 100` as opposed to `min - 0 to max - 100` we are gonna...

Material UI has a demo with `minRange` & stepSize here - https://codesandbox.io/s/tezue3?file=/demo.tsx, but it does not work well for negative numbers.