-
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 core-web-vitals
- Loading branch information
Showing
140 changed files
with
2,102 additions
and
1,385 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
39 changes: 39 additions & 0 deletions
39
docs/development/core/public/kibana-plugin-core-public.app.deeplinks.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,39 @@ | ||
<!-- 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) > [deepLinks](./kibana-plugin-core-public.app.deeplinks.md) | ||
|
||
## App.deepLinks property | ||
|
||
Input type for registering secondary in-app locations for an application. | ||
|
||
Deep links must include at least one of `path` or `deepLinks`<!-- -->. 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 | ||
deepLinks?: AppDeepLink[]; | ||
``` | ||
|
||
## Example | ||
|
||
|
||
```ts | ||
core.application.register({ | ||
id: 'my_app', | ||
title: 'Translated title', | ||
keywords: ['translated keyword1', 'translated keyword2'], | ||
deepLinks: [ | ||
{ id: 'sub1', title: 'Sub1', path: '/sub1', keywords: ['subpath1'] }, | ||
{ | ||
id: 'sub2', | ||
title: 'Sub2', | ||
deepLinks: [ | ||
{ id: 'subsub', title: 'SubSub', path: '/sub2/sub', keywords: ['subpath2'] } | ||
] | ||
} | ||
], | ||
mount: () => { ... } | ||
}) | ||
|
||
``` | ||
|
13 changes: 13 additions & 0 deletions
13
docs/development/core/public/kibana-plugin-core-public.app.keywords.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-public](./kibana-plugin-core-public.md) > [App](./kibana-plugin-core-public.app.md) > [keywords](./kibana-plugin-core-public.app.keywords.md) | ||
|
||
## App.keywords property | ||
|
||
Optional keywords to match with in deep links search. Omit if this part of the hierarchy does not have a page URL. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
keywords?: string[]; | ||
``` |
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
43 changes: 0 additions & 43 deletions
43
docs/development/core/public/kibana-plugin-core-public.app.meta.md
This file was deleted.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
docs/development/core/public/kibana-plugin-core-public.appdeeplink.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,26 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-public](./kibana-plugin-core-public.md) > [AppDeepLink](./kibana-plugin-core-public.appdeeplink.md) | ||
|
||
## AppDeepLink type | ||
|
||
Input type for registering secondary in-app locations for an application. | ||
|
||
Deep links must include at least one of `path` or `deepLinks`<!-- -->. 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 AppDeepLink = { | ||
id: string; | ||
title: string; | ||
keywords?: string[]; | ||
navLinkStatus?: AppNavLinkStatus; | ||
} & ({ | ||
path: string; | ||
deepLinks?: AppDeepLink[]; | ||
} | { | ||
path?: string; | ||
deepLinks: AppDeepLink[]; | ||
}); | ||
``` |
13 changes: 0 additions & 13 deletions
13
docs/development/core/public/kibana-plugin-core-public.appmeta.keywords.md
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
docs/development/core/public/kibana-plugin-core-public.appmeta.md
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
docs/development/core/public/kibana-plugin-core-public.appmeta.searchdeeplinks.md
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
docs/development/core/public/kibana-plugin-core-public.appsearchdeeplink.md
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
17 changes: 17 additions & 0 deletions
17
docs/development/core/public/kibana-plugin-core-public.publicappdeeplinkinfo.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,17 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-public](./kibana-plugin-core-public.md) > [PublicAppDeepLinkInfo](./kibana-plugin-core-public.publicappdeeplinkinfo.md) | ||
|
||
## PublicAppDeepLinkInfo type | ||
|
||
Public information about a registered app's [deepLinks](./kibana-plugin-core-public.appdeeplink.md) | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare type PublicAppDeepLinkInfo = Omit<AppDeepLink, 'deepLinks' | 'keywords' | 'navLinkStatus'> & { | ||
deepLinks: PublicAppDeepLinkInfo[]; | ||
keywords: string[]; | ||
navLinkStatus: AppNavLinkStatus; | ||
}; | ||
``` |
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
16 changes: 0 additions & 16 deletions
16
docs/development/core/public/kibana-plugin-core-public.publicappmetainfo.md
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.