forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typescript work (react-native-elements#2781)
* convert RNE to typescript (react-native-elements#2766) * convert Avatar to typescript * convert the rest of the files into tsx, still rough * move tests back to being js * fix more type errors * more ts updates Co-authored-by: Jeremy Hamilton <jeremy.hamilton@tekfive.com> * typescript migration (react-native-elements#2779) * fix: typescript errors in SearchBar-default * refactor: all styles use StyleSheet.create * feat: add header Placement type * style: all react components use React.FunctionComponent * fix: add missing InputProps to SearchBarAndroidProps * fix(Tooltip): typescript errors * fix(Input): Animated.timing easing typo * fix: small fixes * fix(SearchBarAndroidProps): add missing InputProps * fix typing with static members of functions * ignore ts in slider; needs redone * finish up cleaning up the typescript conversion * trying out a different wrapped component * add dist folder to publish * a few more tsconfig changes * fix withTheme typing * Typescript work (react-native-elements#2792) * trying out a different wrapped component * add dist folder to publish * a few more tsconfig changes * fix withTheme typing Co-authored-by: Jeremy Hamilton <jeremy.hamilton@tekfive.com> * forwardRef in withTheme Co-authored-by: Jeremy Hamilton <jeremy.hamilton@tekfive.com> Co-authored-by: Mohammed Faragallah <o0frego0o@hotmail.com>
- Loading branch information
1 parent
ab0526b
commit 4f90e00
Showing
119 changed files
with
2,500 additions
and
4,916 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
website | ||
coverage | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"extends": "@react-native-community", | ||
"rules": { | ||
"react-native/no-inline-styles": 0 | ||
"react-native/no-inline-styles": 0, | ||
"@typescript-eslint/no-unused-vars": ["error", { "ignoreRestSiblings": true }] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ website/build | |
package-lock.json | ||
build | ||
*.orig | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.