-
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] Migrate uiSettings owned by Kibana app #64321
Merged
Merged
Changes from 18 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
4efa64e
Migrate uiSettings
maryia-lapata 77b75cd
Migrate uiSettings to visTypeVislib
maryia-lapata db60224
Refactoring
maryia-lapata 6761400
Update index_pattern.ts
maryia-lapata cf723a9
Merge remote-tracking branch 'kibana/master' into ui_settings
maryia-lapata 83b29f7
Merge master /fix conflicts
kertal c0c8327
Add defaults for fixing failing tests
kertal 1d21edd
Merge master /fix conflicts
kertal 33587b0
Merge master /fix conflicts
kertal 75213b8
Merge remote-tracking branch 'upstream/master' into ui_settings
kertal 1b5e5a8
Merge remote-tracking branch 'upstream/master' into ui_settings
kertal 205dd54
Move META_FIELDS_SETTING, DOC_HIGHLIGHT_SETTING to data plugin.ts
kertal 26b3b1a
Update server.api.md
kertal daa18f6
Merge master /fix conflicts
kertal d9d7cf4
Merge remote-tracking branch 'upstream/master' into ui_settings
kertal 7769016
Merge master /fix conflicts
kertal 72e29b7
Refactor table_list_view.tsx to no longer get PER_PAGE_SETTING by uiS…
kertal 785c3a5
Migrate graph usage of saved_objects module constants for uiSettings …
kertal 185d29c
Adapt Visualize code
kertal 17c291a
Cleanups
kertal 5df721d
Adapt dashboard
kertal ca7915a
Merge master /fix conflicts
kertal 8d4b8c2
Fix types
kertal 6119854
Merge remote-tracking branch 'upstream/master' into ui_settings
kertal fe8dc06
Remove chart plugin logging
kertal 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
export const COLOR_MAPPING_SETTING = 'visualization:colorMapping'; |
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,6 +1,6 @@ | ||
{ | ||
"id": "charts", | ||
"version": "kibana", | ||
"server": false, | ||
"server": true, | ||
"ui": true | ||
} |
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.
If I'm not wrong we are trying to avoid imports from /
common
folder.Also I think that this approach introduce a lot of fields in our static contract which also not good.
Maybe we can move all into one variable:
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.
sorry, seems we had a comment/merge race condition. seen this comment after the merge. since this part of Kibana was in the legacy world, and it's currently migrated, this could be done in or after #65026