-
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.
Merge branch 'master' into alerts/custom-recovery-action-group
* master: (63 commits) Revert the Revert of "[Alerting] renames Resolved action group to Recovered (#84123)" (#84662) declare kbn/monaco dependency on kbn/i18n explicitly (#84660) Remove unscripted fields from sample data index-pattern saved objects (#84659) [ML] Fix unnecessary trigger of wildcard field type search for ML plugin routes. (#84605) Update create.asciidoc (#84046) [Security Solution][Detections] Fix labels and issue with mandatory fields (#84525) Fix flaky test suite (#84602) [Security Solution] [Detections] Create a 'partial failure' status for rules (#84293) Revert "[Alerting] renames Resolved action group to Recovered (#84123)" Update code-comments describing babel plugins (#84622) [Security Solution] [Cases] Cypress for case connector selector options (#80745) [Discover] Unskip doc table tests (#84564) [Lens] (Accessibility) Improve landmarks in Lens (#84511) [Lens] (Accessibility) Focus mistakenly stops on righthand form (#84519) Return early when parallel install process detected (#84190) [Security Solution][Detections] Support arrays in event fields for Severity/Risk overrides (#83723) [Security Solution][Detections] Fix grammatical error in validation message for threshold field in "Create new rule" -> "Define rule" (#84490) [Fleet] Update agent details page (#84434) adding documentation of use of NODE_EXTRA_CA_CERTS env var (#84578) [Search] Integrate "Send to background" UI with session service (#83073) ...
- Loading branch information
Showing
574 changed files
with
442,684 additions
and
4,984 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
42 changes: 42 additions & 0 deletions
42
docs/development/core/public/kibana-plugin-core-public.app.searchdeeplinks.md
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,42 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-public](./kibana-plugin-core-public.md) > [App](./kibana-plugin-core-public.app.md) > [searchDeepLinks](./kibana-plugin-core-public.app.searchdeeplinks.md) | ||
|
||
## App.searchDeepLinks property | ||
|
||
Array of links that represent secondary in-app locations for the app. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
searchDeepLinks?: AppSearchDeepLink[]; | ||
``` | ||
|
||
## Remarks | ||
|
||
Used to populate navigational search results (where available). Can be updated using the [App.updater$](./kibana-plugin-core-public.app.updater_.md) observable. See for more details. | ||
|
||
## Example | ||
|
||
The `path` property on deep links should not include the application's `appRoute`<!-- -->: | ||
|
||
```ts | ||
core.application.register({ | ||
id: 'my_app', | ||
title: 'My App', | ||
searchDeepLinks: [ | ||
{ id: 'sub1', title: 'Sub1', path: '/sub1' }, | ||
{ | ||
id: 'sub2', | ||
title: 'Sub2', | ||
searchDeepLinks: [ | ||
{ id: 'subsub', title: 'SubSub', path: '/sub2/sub' } | ||
] | ||
} | ||
], | ||
mount: () => { ... }, | ||
}) | ||
|
||
``` | ||
Will produce deep links on these paths: - `/app/my_app/sub1` - `/app/my_app/sub2/sub` | ||
|
24 changes: 24 additions & 0 deletions
24
docs/development/core/public/kibana-plugin-core-public.appsearchdeeplink.md
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,24 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-public](./kibana-plugin-core-public.md) > [AppSearchDeepLink](./kibana-plugin-core-public.appsearchdeeplink.md) | ||
|
||
## AppSearchDeepLink type | ||
|
||
Input type for registering secondary in-app locations for an application. | ||
|
||
Deep links must include at least one of `path` or `searchDeepLinks`<!-- -->. A deep link that does not have a `path` represents a topological level in the application's hierarchy, but does not have a destination URL that is user-accessible. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare type AppSearchDeepLink = { | ||
id: string; | ||
title: string; | ||
} & ({ | ||
path: string; | ||
searchDeepLinks?: AppSearchDeepLink[]; | ||
} | { | ||
path?: string; | ||
searchDeepLinks: AppSearchDeepLink[]; | ||
}); | ||
``` |
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
15 changes: 15 additions & 0 deletions
15
...evelopment/core/public/kibana-plugin-core-public.publicappsearchdeeplinkinfo.md
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,15 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-public](./kibana-plugin-core-public.md) > [PublicAppSearchDeepLinkInfo](./kibana-plugin-core-public.publicappsearchdeeplinkinfo.md) | ||
|
||
## PublicAppSearchDeepLinkInfo type | ||
|
||
Public information about a registered app's [searchDeepLinks](./kibana-plugin-core-public.appsearchdeeplink.md) | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare type PublicAppSearchDeepLinkInfo = Omit<AppSearchDeepLink, 'searchDeepLinks'> & { | ||
searchDeepLinks: PublicAppSearchDeepLinkInfo[]; | ||
}; | ||
``` |
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
13 changes: 13 additions & 0 deletions
13
...ver/kibana-plugin-core-server.savedobjectsincrementcounteroptions.initialize.md
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,13 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-server](./kibana-plugin-core-server.md) > [SavedObjectsIncrementCounterOptions](./kibana-plugin-core-server.savedobjectsincrementcounteroptions.md) > [initialize](./kibana-plugin-core-server.savedobjectsincrementcounteroptions.initialize.md) | ||
|
||
## SavedObjectsIncrementCounterOptions.initialize property | ||
|
||
(default=false) If true, sets all the counter fields to 0 if they don't already exist. Existing fields will be left as-is and won't be incremented. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
initialize?: boolean; | ||
``` |
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.