forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/#Expensify#23220-bidirectional-pagination' of http…
…s://github.com/margelo/expensify-app-fork into feat/#Expensify#23229-linking
- Loading branch information
Showing
12 changed files
with
95 additions
and
149 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
16 changes: 0 additions & 16 deletions
16
.../report/ListBoundaryLoader/ListHeaderComponentLoader/ListHeaderComponentLoader.android.js
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
...ges/home/report/ListBoundaryLoader/ListHeaderComponentLoader/ListHeaderComponentLoader.js
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import CONST from '../../CONST'; | ||
import BoundaryLoaderStyles from './types'; | ||
|
||
const boundaryLoaderStyles: BoundaryLoaderStyles = { | ||
position: 'absolute', | ||
bottom: 0, | ||
left: 0, | ||
right: 0, | ||
height: CONST.CHAT_HEADER_LOADER_HEIGHT, | ||
top: -CONST.CHAT_HEADER_LOADER_HEIGHT, | ||
}; | ||
|
||
export default boundaryLoaderStyles; |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import CONST from '../../CONST'; | ||
import BoundaryLoaderStyles from './types'; | ||
|
||
const boundaryLoaderStyles: BoundaryLoaderStyles = { | ||
position: 'absolute', | ||
top: 0, | ||
bottom: 0, | ||
left: 0, | ||
right: 0, | ||
height: CONST.CHAT_HEADER_LOADER_HEIGHT, | ||
}; | ||
|
||
export default boundaryLoaderStyles; |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {ViewStyle} from 'react-native'; | ||
|
||
type BoundaryLoaderStyles = Partial<Pick<ViewStyle, 'position' | 'top' | 'bottom' | 'left' | 'right' | 'height'>>; | ||
|
||
export default BoundaryLoaderStyles; |
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