-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Serialization & Types improvements #523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
dc181e6
More fault tolerant
6268c1a
Display stores with CustomValue API
4272abb
Dsiplay VueRouter instances with CustomValue API
f5d9fd5
CustomValue API: new 'tooltip' option, supports functions, component def
7253c8f
Test router & store
fb17cbe
Open in editor Component defs
984ce87
Fix #528
2a0b210
Comments
d0dd3ee
Encode cache clear
57ebd2a
Large array test
e63277f
CustomValue API: respect fields order
b52d98a
Switch props and data sections to follow style guide
57a65a0
New 'grey' and 'red' classes
62c5d90
Add support for Map and Set - Fix #349
6d756c0
Set and Map test case
2c10ad5
Merge branch 'master' into types-improvements
be9de63
Fix Map key/value inverted
a68ee61
Merge branch 'master' into types-improvements
096b5ef
Optimizations
a17b953
Merge branch 'component-inspect-optimizations' into types-improvements
025594a
Fix tooltip
c8d16cf
DataField style changes
d9fdcf8
Env: added isLinux & isWindows + function 'f' style fixes
8f82171
gps-not-fixed icon is ugly on Windows
Akryum 413b0e7
Style tweaks
9062f04
Typo
8067d9f
Added more function test cases
2bb8d50
Merge branch 'master' into types-improvements
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,15 @@ | ||
export function getCustomRouterDetails (router) { | ||
return { | ||
_custom: { | ||
type: 'router', | ||
display: 'VueRouter', | ||
value: { | ||
options: router.options, | ||
currentRoute: router.currentRoute | ||
}, | ||
fields: { | ||
abstract: true | ||
} | ||
} | ||
} | ||
} |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also add anonymous function here and make sure it works good as well?
hi: function (a, b) {}
should be displayed probably asf (a, b)
, also what about arrow functions? Orhi() {}
?