YAMLEditor
Deprecated: Use CodeEditor instead. A basic lazy loaded YAML editor with hover help and completion.
Example
<React.Suspense fallback={<LoadingBox />}>
<YAMLEditor
value={code}
/>
</React.Suspense>
| Parameter Name | Description |
|---|---|
|
String representing the YAML code to render. |
|
Monaco editor options. |
|
Minimum editor height in valid CSS height values. |
|
Boolean to show shortcuts on top of the editor. |
|
Array of ReactNode rendered on the toolbar links section on top of the editor. |
|
Callback for on code change event. |
|
Callback called when the command CTRL / CMD + S is triggered. |
|
React reference to |