-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address some of the
no_group_crossing
dependencies (#198261)
### Summary This PR relocates some plugins and packages that are incorrectly categorised, aiming at reducing inter-solution dependencies. It also fixes some incorrect import statements that introduce unnecessary dependencies with other components. --------- Co-authored-by: kibanamachine <[email protected]> Co-authored-by: Maryam Saeidi <[email protected]> (cherry picked from commit 730f4c9) # Conflicts: # .eslintrc.js # src/plugins/ai_assistant_management/selection/kibana.jsonc # x-pack/packages/kbn-ai-assistant/kibana.jsonc # x-pack/plugins/dashboard_enhanced/kibana.jsonc # x-pack/plugins/observability_solution/observability_ai_assistant/kibana.jsonc # x-pack/plugins/screenshotting/kibana.jsonc
- Loading branch information
1 parent
8cf6d9c
commit c91614d
Showing
44 changed files
with
162 additions
and
140 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
{ | ||
"type": "shared-browser", | ||
"id": "@kbn/shared-ux-page-analytics-no-data", | ||
"owner": "@elastic/appex-sharedux" | ||
"owner": "@elastic/appex-sharedux", | ||
"group": "platform", | ||
"visibility": "private" | ||
} |
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,5 +1,7 @@ | ||
{ | ||
"type": "shared-common", | ||
"id": "@kbn/shared-ux-page-analytics-no-data-mocks", | ||
"owner": "@elastic/appex-sharedux" | ||
"owner": "@elastic/appex-sharedux", | ||
"group": "platform", | ||
"visibility": "private" | ||
} |
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,5 +1,7 @@ | ||
{ | ||
"type": "shared-browser", | ||
"id": "@kbn/shared-ux-page-analytics-no-data-types", | ||
"owner": "@elastic/appex-sharedux" | ||
"owner": "@elastic/appex-sharedux", | ||
"group": "platform", | ||
"visibility": "private" | ||
} |
25 changes: 19 additions & 6 deletions
25
src/plugins/ai_assistant_management/selection/kibana.jsonc
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,16 +1,29 @@ | ||
{ | ||
"type": "plugin", | ||
"id": "@kbn/ai-assistant-management-plugin", | ||
"owner": "@elastic/obs-knowledge-team", | ||
"owner": [ | ||
"@elastic/obs-knowledge-team" | ||
], | ||
// This should probably be platform. While the code owner is currently observability, the package is a platform AI assistant selector. | ||
"group": "platform", | ||
"visibility": "shared", | ||
"plugin": { | ||
"id": "aiAssistantManagementSelection", | ||
"server": true, | ||
"browser": true, | ||
"requiredPlugins": ["management"], | ||
"optionalPlugins": ["home", "serverless", "features"], | ||
"requiredBundles": ["kibanaReact"], | ||
"requiredPlugins": [ | ||
"management" | ||
], | ||
"optionalPlugins": [ | ||
"home", | ||
"serverless", | ||
"features" | ||
], | ||
"requiredBundles": [ | ||
"kibanaReact" | ||
], | ||
"configPath": [ | ||
"aiAssistantManagementSelection" | ||
], | ||
}, | ||
] | ||
} | ||
} |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
{ | ||
"id": "@kbn/ai-assistant", | ||
"owner": "@elastic/search-kibana", | ||
"type": "shared-browser" | ||
"type": "shared-browser", | ||
"group": "platform", | ||
"visibility": "shared" | ||
} |
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,5 +1,7 @@ | ||
{ | ||
"type": "shared-common", | ||
"id": "@kbn/securitysolution-data-table", | ||
"owner": "@elastic/security-threat-hunting-investigations" | ||
"owner": "@elastic/security-threat-hunting-investigations", | ||
"group": "security", | ||
"visibility": "private" | ||
} |
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 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 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
Oops, something went wrong.