-
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": "burt@example.com" | ||
}, { | ||
"name": "Charlie Cheetah", | ||
"img": "preview/assets/cheetah.jpg", | ||
"description": "Charlie is a Cheetah.", | ||
"email": "charlie@example.com" | ||
}, { | ||
"name": "Donald Duck", | ||
"img": "preview/assets/duck.jpg", | ||
"description": "Donald is a Duck.", | ||
"email": "donald@example.com" | ||
}, { | ||
"name": "Eva Eagle", | ||
"img": "preview/assets/eagle.jpg", | ||
"description": "Eva is an Eagle.", | ||
"email": "eva@example.com" | ||
}, { | ||
"name": "Ellie Elephant", | ||
"img": "preview/assets/elephant.jpg", | ||
"description": "Ellie is an Elephant.", | ||
"email": "ellie@example.com" | ||
}, { | ||
"name": "Gino Giraffe", | ||
"img": "preview/assets/giraffe.jpg", | ||
"description": "Gino is a Giraffe.", | ||
"email": "gino@example.com" | ||
}, { | ||
"name": "Isabella Iguana", | ||
"img": "preview/assets/iguana.jpg", | ||
"description": "Isabella is an Iguana.", | ||
"email": "isabella@example.com" | ||
}, { | ||
"name": "Karl Kitten", | ||
"img": "preview/assets/kitten.jpg", | ||
"description": "Karl is a Kitten.", | ||
"email": "karl@example.com" | ||
}, { | ||
"name": "Lionel Lion", | ||
"img": "preview/assets/lion.jpg", | ||
"description": "Lionel is a Lion.", | ||
"email": "lionel@example.com" | ||
}, { | ||
"name": "Molly Mouse", | ||
"img": "preview/assets/mouse.jpg", | ||
"description": "Molly is a Mouse.", | ||
"email": "molly@example.com" | ||
}, { | ||
"name": "Paul Puppy", | ||
"img": "preview/assets/puppy.jpg", | ||
"description": "Paul is a Puppy.", | ||
"email": "paul@example.com" | ||
}, { | ||
"name": "Rachel Rabbit", | ||
"img": "preview/assets/rabbit.jpg", | ||
"description": "Rachel is a Rabbit.", | ||
"email": "rachel@example.com" | ||
}]; |
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