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
@@ -27,9 +27,9 @@ import { CascaderOption } from '@grafana/ui';
| [children](#children-property) | <code>CascaderOption[]</code> | Children will be shown in a submenu. Use 'items' instead, as 'children' exist to ensure backwards compatibility. |
| [disabled](#disabled-property) | <code>boolean</code> | |
| [items](#items-property) | <code>CascaderOption[]</code> | Items will be just flattened into the main list of items recursively. |
| [label](#label-property) | <code>string</code> | |
| [title](#title-property) | <code>string</code> | |
| [value](#value-property) | <code>any</code> | |
| [label](#label-property) | <code>string</code> | The label to display in the UI |
| [title](#title-property) | <code>string</code> | Avoid using |
| [value](#value-property) | <code>any</code> | The value used under the hood |
### children property
@@ -61,6 +61,8 @@ items?: CascaderOption[];
### label property
The label to display in the UI
<b>Signature</b>
```typescript
@@ -69,6 +71,8 @@ label: string;
### title property
Avoid using
<b>Signature</b>
```typescript
@@ -77,6 +81,8 @@ title?: string;
### value property
The value used under the hood
<b>Signature</b>
```typescript