-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(refresher): default to disabled false, add to breaking changes
also updates the preview demo to add to the top of the list on pull to refresh fixes #14879
- Loading branch information
1 parent
0db643d
commit f1826a6
Showing
19 changed files
with
129 additions
and
23 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,61 @@ | ||
let json = [{ | ||
"name": "Burt Bear", | ||
"img": "preview/assets/bear.jpg", | ||
"description": "Burt is a Bear.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Charlie Cheetah", | ||
"img": "preview/assets/cheetah.jpg", | ||
"description": "Charlie is a Cheetah.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Donald Duck", | ||
"img": "preview/assets/duck.jpg", | ||
"description": "Donald is a Duck.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Eva Eagle", | ||
"img": "preview/assets/eagle.jpg", | ||
"description": "Eva is an Eagle.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Ellie Elephant", | ||
"img": "preview/assets/elephant.jpg", | ||
"description": "Ellie is an Elephant.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Gino Giraffe", | ||
"img": "preview/assets/giraffe.jpg", | ||
"description": "Gino is a Giraffe.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Isabella Iguana", | ||
"img": "preview/assets/iguana.jpg", | ||
"description": "Isabella is an Iguana.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Karl Kitten", | ||
"img": "preview/assets/kitten.jpg", | ||
"description": "Karl is a Kitten.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Lionel Lion", | ||
"img": "preview/assets/lion.jpg", | ||
"description": "Lionel is a Lion.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Molly Mouse", | ||
"img": "preview/assets/mouse.jpg", | ||
"description": "Molly is a Mouse.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Paul Puppy", | ||
"img": "preview/assets/puppy.jpg", | ||
"description": "Paul is a Puppy.", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Rachel Rabbit", | ||
"img": "preview/assets/rabbit.jpg", | ||
"description": "Rachel is a Rabbit.", | ||
"email": "[email protected]" | ||
}]; |
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