forked from wix/react-native-ui-lib
-
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.
fix eslint not working and clearnup all eslint errors
- Loading branch information
Showing
109 changed files
with
2,067 additions
and
1,822 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
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
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,9 +1,23 @@ | ||
export const icons = { | ||
get check() { return require('./check.png'); }, | ||
get checkSmall() { return require('./check-small.png'); }, | ||
get chevronRight() { return require('./chevronRight.png'); }, | ||
get plusSmall() { return require('./plusSmall.png'); }, | ||
get search() { return require('./search.png'); }, | ||
get settings() { return require('./settings.png'); }, | ||
get x() { return require('./x.png'); } | ||
get check() { | ||
return require('./check.png'); | ||
}, | ||
get checkSmall() { | ||
return require('./check-small.png'); | ||
}, | ||
get chevronRight() { | ||
return require('./chevronRight.png'); | ||
}, | ||
get plusSmall() { | ||
return require('./plusSmall.png'); | ||
}, | ||
get search() { | ||
return require('./search.png'); | ||
}, | ||
get settings() { | ||
return require('./settings.png'); | ||
}, | ||
get x() { | ||
return require('./x.png'); | ||
} | ||
}; |
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,3 +1,5 @@ | ||
export const images = { | ||
get gradient() { return require('./gradient.png'); }, | ||
get gradient() { | ||
return require('./gradient.png'); | ||
} | ||
}; |
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,7 +1,13 @@ | ||
import { Assets } from './Assets'; | ||
import {Assets} from './Assets'; | ||
|
||
export default new Assets().loadAssetsGroup('', { | ||
get icons() { return require('./icons').icons; }, | ||
get emojis() { return require('./emojis').emojis; }, | ||
get images() { return require('./images').images; }, | ||
get icons() { | ||
return require('./icons').icons; | ||
}, | ||
get emojis() { | ||
return require('./emojis').emojis; | ||
}, | ||
get images() { | ||
return require('./images').images; | ||
} | ||
}); |
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.