Docs: run the api-extractor on master to update docs (#23726)

* regenerated packages docs.

* fixed spelling issues.

* fixed spelling issues.
This commit is contained in:
Marcus Andersson
2020-04-21 10:41:50 +02:00
committed by GitHub
parent 017767ae39
commit a2d741f60f
275 changed files with 6448 additions and 2193 deletions
+11 -3
View File
@@ -10,6 +10,8 @@ draft = true
## NavModel interface
Interface used to describe different kinds of page titles and page navigation. Navmodels are usually generated in the backend and stored in Redux.
<b>Signature</b>
```typescript
@@ -24,12 +26,14 @@ import { NavModel } from '@grafana/data';
| Property | Type | Description |
| --- | --- | --- |
| [breadcrumbs](#breadcrumbs-property) | <code>NavModelItem[]</code> | |
| [main](#main-property) | <code>NavModelItem</code> | |
| [node](#node-property) | <code>NavModelItem</code> | |
| [breadcrumbs](#breadcrumbs-property) | <code>NavModelItem[]</code> | Describes breadcrumbs that are used in places such as data source settings., folder page and plugins page. |
| [main](#main-property) | <code>NavModelItem</code> | Main page. that wraps the navigation. Generate the <code>children</code> property generate tabs when used with the Page component. |
| [node](#node-property) | <code>NavModelItem</code> | This is the current active tab/navigation. |
### breadcrumbs property
Describes breadcrumbs that are used in places such as data source settings., folder page and plugins page.
<b>Signature</b>
```typescript
@@ -38,6 +42,8 @@ breadcrumbs?: NavModelItem[];
### main property
Main page. that wraps the navigation. Generate the `children` property generate tabs when used with the Page component.
<b>Signature</b>
```typescript
@@ -46,6 +52,8 @@ main: NavModelItem;
### node property
This is the current active tab/navigation.
<b>Signature</b>
```typescript