-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[NP] Visualize #62294
Merged
Merged
[NP] Visualize #62294
Changes from 15 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
ae8c4df
Move visualize plugin to np
sulemanof 2ce021c
Refactor plugin services
sulemanof b36a750
Merge remote-tracking branch 'upstream/master' into np/visualize
sulemanof 2a5e63f
Clean up
sulemanof 03143d7
Merge remote-tracking branch 'upstream/master' into np/visualize
sulemanof 325de83
Remove legacy style usage
sulemanof dbd1946
Fix style imports
sulemanof aa27888
Fix timelion_options context provider
sulemanof a7edd02
Fix translations
sulemanof 38c8d67
Change codeowners for visualize
sulemanof 4daf88c
Import styles in legacy for BWC in Browser tests
sulemanof d1b51a0
Merge remote-tracking branch 'upstream/master' into np/visualize
sulemanof 00f29d8
Merge remote-tracking branch 'upstream/master' into np/visualize
sulemanof 004e312
Merge branch 'master' into np/visualize
elasticmachine 941d82a
Merge branch 'master' into np/visualize
elasticmachine bdb058e
Merge remote-tracking branch 'upstream/master' into np/visualize
sulemanof 381c1c6
Get rid of embeddable dependency
sulemanof ceff449
Merge branch 'np/visualize' of github.com:sulemanof/kibana into np/vi…
sulemanof 99c6607
Merge remote-tracking branch 'upstream/master' into np/visualize
sulemanof 3edbc08
Merge remote-tracking branch 'upstream/master' into np/visualize
sulemanof 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 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
src/legacy/core_plugins/kibana/public/visualize/legacy_imports.ts
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
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
@import 'wizard/index'; | ||
@import 'embeddable/index'; | ||
@import 'components/index'; |
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,18 @@ | ||
{ | ||
"id": "visualize", | ||
"version": "kibana", | ||
"server": false, | ||
"ui": true, | ||
"requiredPlugins": [ | ||
"data", | ||
"embeddable", | ||
"kibanaLegacy", | ||
"navigation", | ||
"savedObjects", | ||
"visualizations" | ||
], | ||
"optionalPlugins": [ | ||
"home", | ||
"share" | ||
] | ||
} |
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
File renamed without changes.
File renamed without changes.
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.
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.
I didn't think of this initially, but @timroes is making a good point about this dependency in the Lens PR: #62965
As visualize works just fine without embeddables, this should be an optional dependency and usages should be wrapped into an
if() {
block similar toshare
andhome
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.
A funny thing, this showed up Visualize doesn't need the
embeddable
dependency at all. Seems it's just a useless left over.So I just removed it in one of the last commit. Thanks for this catch!