Skip to content

Commit f91a49e

Browse files
Merge branch 'master' into dev/ip-mock
2 parents cda3465 + c4d1e7d commit f91a49e

File tree

263 files changed

+5594
-6570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

263 files changed

+5594
-6570
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@
144144
/x-pack/plugins/dashboard_enhanced/ @elastic/kibana-presentation
145145
/x-pack/test/functional/apps/canvas/ @elastic/kibana-presentation
146146
#CC# /src/plugins/kibana_react/public/code_editor/ @elastic/kibana-presentation
147-
#CC# /x-pack/plugins/dashboard_mode @elastic/kibana-presentation
148147

149148
# Machine Learning
150149
/x-pack/plugins/ml/ @elastic/ml-ui

api_docs/dashboard_mode.json

Lines changed: 0 additions & 238 deletions
This file was deleted.

api_docs/dashboard_mode.mdx

Lines changed: 0 additions & 32 deletions
This file was deleted.

docs/developer/plugin-list.asciidoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -378,10 +378,6 @@ The client-side plugin configures following values:
378378
|Adds drilldown capabilities to dashboard. Owned by the Kibana App team.
379379
380380
381-
|{kib-repo}blob/{branch}/x-pack/plugins/dashboard_mode/README.md[dashboardMode]
382-
|The deprecated dashboard only mode.
383-
384-
385381
|{kib-repo}blob/{branch}/x-pack/plugins/data_enhanced/README.md[dataEnhanced]
386382
|The data_enhanced plugin is the x-pack counterpart to the src/plguins/data plugin.
387383

docs/development/core/public/kibana-plugin-core-public.chromenavlinks.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ export interface ChromeNavLinks
2222
| [getForceAppSwitcherNavigation$()](./kibana-plugin-core-public.chromenavlinks.getforceappswitchernavigation_.md) | An observable of the forced app switcher state. |
2323
| [getNavLinks$()](./kibana-plugin-core-public.chromenavlinks.getnavlinks_.md) | Get an observable for a sorted list of navlinks. |
2424
| [has(id)](./kibana-plugin-core-public.chromenavlinks.has.md) | Check whether or not a navlink exists. |
25-
| [showOnly(id)](./kibana-plugin-core-public.chromenavlinks.showonly.md) | Remove all navlinks except the one matching the given id. |
2625

docs/development/core/public/kibana-plugin-core-public.chromenavlinks.showonly.md

Lines changed: 0 additions & 28 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) &gt; [IndexPatternsService](./kibana-plugin-plugins-data-public.indexpatternsservice.md) &gt; [hasUserIndexPattern](./kibana-plugin-plugins-data-public.indexpatternsservice.hasuserindexpattern.md)
4+
5+
## IndexPatternsService.hasUserIndexPattern() method
6+
7+
Checks if current user has a user created index pattern ignoring fleet's server default index patterns
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
hasUserIndexPattern(): Promise<boolean>;
13+
```
14+
<b>Returns:</b>
15+
16+
`Promise<boolean>`
17+

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternsservice.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@ export declare class IndexPatternsService
4545
| [createAndSave(spec, override, skipFetchFields)](./kibana-plugin-plugins-data-public.indexpatternsservice.createandsave.md) | | Create a new index pattern and save it right away |
4646
| [createSavedObject(indexPattern, override)](./kibana-plugin-plugins-data-public.indexpatternsservice.createsavedobject.md) | | Save a new index pattern |
4747
| [delete(indexPatternId)](./kibana-plugin-plugins-data-public.indexpatternsservice.delete.md) | | Deletes an index pattern from .kibana index |
48+
| [hasUserIndexPattern()](./kibana-plugin-plugins-data-public.indexpatternsservice.hasuserindexpattern.md) | | Checks if current user has a user created index pattern ignoring fleet's server default index patterns |
4849
| [updateSavedObject(indexPattern, saveAttempts, ignoreErrors)](./kibana-plugin-plugins-data-public.indexpatternsservice.updatesavedobject.md) | | Save existing index pattern. Will attempt to merge differences if there are conflicts |
4950

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [IndexPatternsService](./kibana-plugin-plugins-data-server.indexpatternsservice.md) &gt; [hasUserIndexPattern](./kibana-plugin-plugins-data-server.indexpatternsservice.hasuserindexpattern.md)
4+
5+
## IndexPatternsService.hasUserIndexPattern() method
6+
7+
Checks if current user has a user created index pattern ignoring fleet's server default index patterns
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
hasUserIndexPattern(): Promise<boolean>;
13+
```
14+
<b>Returns:</b>
15+
16+
`Promise<boolean>`
17+

docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpatternsservice.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@ export declare class IndexPatternsService
4545
| [createAndSave(spec, override, skipFetchFields)](./kibana-plugin-plugins-data-server.indexpatternsservice.createandsave.md) | | Create a new index pattern and save it right away |
4646
| [createSavedObject(indexPattern, override)](./kibana-plugin-plugins-data-server.indexpatternsservice.createsavedobject.md) | | Save a new index pattern |
4747
| [delete(indexPatternId)](./kibana-plugin-plugins-data-server.indexpatternsservice.delete.md) | | Deletes an index pattern from .kibana index |
48+
| [hasUserIndexPattern()](./kibana-plugin-plugins-data-server.indexpatternsservice.hasuserindexpattern.md) | | Checks if current user has a user created index pattern ignoring fleet's server default index patterns |
4849
| [updateSavedObject(indexPattern, saveAttempts, ignoreErrors)](./kibana-plugin-plugins-data-server.indexpatternsservice.updatesavedobject.md) | | Save existing index pattern. Will attempt to merge differences if there are conflicts |
4950

0 commit comments

Comments
 (0)