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
@@ -24,13 +24,15 @@ import { DisplayValue } from '@grafana/data';
| Property | Type | Description |
| --- | --- | --- |
| [color](#color-property) | <code>string</code> | |
| [numeric](#numeric-property) | <code>number</code> | |
| [percent](#percent-property) | <code>number</code> | |
| [color](#color-property) | <code>string</code> | Color based on configs or Threshold |
| [numeric](#numeric-property) | <code>number</code> | Use isNaN to check if it is a real number |
| [percent](#percent-property) | <code>number</code> | 0-1 between min &amp; max |
| [title](#title-property) | <code>string</code> | |
### color property
Color based on configs or Threshold
<b>Signature</b>
```typescript
@@ -39,6 +41,8 @@ color?: string;
### numeric property
Use isNaN to check if it is a real number
<b>Signature</b>
```typescript
@@ -47,6 +51,8 @@ numeric: number;
### percent property
0-1 between min &amp; max
<b>Signature</b>
```typescript