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
@@ -25,6 +25,8 @@ import { PanelEditorProps } from '@grafana/data';
| Property | Type | Description |
| --- | --- | --- |
| [data](#data-property) | <code>PanelData</code> | |
| [fieldConfig](#fieldconfig-property) | <code>FieldConfigSource</code> | Panel fields configuration - temporart solution TODO\[FieldConfig\]: Remove when we switch old editor to new |
| [onFieldConfigChange](#onfieldconfigchange-property) | <code>(config: FieldConfigSource) =&gt; void</code> | Enables panel field config manipulation TODO\[FieldConfig\]: Remove when we switch old editor to new |
| [onOptionsChange](#onoptionschange-property) | <code>(options: T, callback?: () =&gt; void) =&gt; void</code> | |
| [options](#options-property) | <code>T</code> | |
@@ -36,6 +38,26 @@ import { PanelEditorProps } from '@grafana/data';
data: PanelData;
```
### fieldConfig property
Panel fields configuration - temporart solution TODO\[FieldConfig\]: Remove when we switch old editor to new
<b>Signature</b>
```typescript
fieldConfig: FieldConfigSource;
```
### onFieldConfigChange property
Enables panel field config manipulation TODO\[FieldConfig\]: Remove when we switch old editor to new
<b>Signature</b>
```typescript
onFieldConfigChange: (config: FieldConfigSource) => void;
```
### onOptionsChange property
<b>Signature</b>