Robbe Clerckx

Results 8 comments of Robbe Clerckx

I've added the unit test. When commenting out my previous change it will fail by finding a path through the corners of the points marked to avoid.

Sorry for edit spamming. To at least not get typescript errors you can add `react-native-activity-feed.d.ts` to your project, it's something. ``` declare module 'react-native-activity-feed' { import { Component } from...

I can confirm this is still an issue, when importing multiline text it ends up in the database as plain text. Eg. ``` This is: - text - across -...

I was running into the same issue, I suppose it's because they are passed through by index.d.ts, but not by index.js? https://github.com/SudoPlz/sp-react-native-in-app-updates/blob/154057630d77f437d6edbd74fcc2009c83981ab6/src/index.d.ts#L9-L16 https://github.com/SudoPlz/sp-react-native-in-app-updates/blob/154057630d77f437d6edbd74fcc2009c83981ab6/src/index.js#L1-L6 My suggestion would be to remove `export...

Not exactly, PR #98 handles the [start attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol#start) of the `` element. This PR handles the [value attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li#value) of the `` element, which can change the number of an element...

Ok, I solved the merge conflict and in the meantime I noticed that the start value implementation did not support other list styles (alpha or roman). I moved the start...

Very sorry for the inconvenience, I made a bug, fixed it here: #102 Everything worked fine with minified html. Please excuse my oversight.

After some digging I found that the issue is triggered by an initial `onMomentumScrollEnd` when the component renders. An easy fix is to set `animated: false` here: https://github.com/farhoudshapouran/react-native-ui-datepicker/blob/9b317eba399144944ac5235e2d151036456c5786/src/components/time-picker/wheel-picker/wheel-picker.tsx#L151 Here's a...