BlazorMonaco icon indicating copy to clipboard operation
BlazorMonaco copied to clipboard

Blazor component for Microsoft's Monaco Editor which powers Visual Studio Code.

Results 59 BlazorMonaco issues
Sort by recently updated
recently updated
newest added

When adding Monaco Editor to a project that already contains [Blazorise](https://github.com/Megabit/Blazorise) I get the following exception in the browser console: ``` Microsoft.JSInterop.JSException: Can only have one anonymous define call per...

I am using Blazor Monaco in a Blazor Server app and experiencing some weird behaviour. When running in Visual Studio, I am getting errors, but when I publish the app,...

``` @using MudBlazor; @using WorkflowCore.Activities; @using WorkflowCore.Attributes; @using WorkflowCore.Models; @using WorkflowCore.Workflows; @using BlazorMonaco; private StandaloneEditorConstructionOptions EditorConstructionOptions(MonacoEditor codeEditor) { return new StandaloneEditorConstructionOptions { Language = Language, Value = Code, Minimap =...

This refactor encapsulate the JS code in its own module instead of using the global scope which could be tampered with. Important notice, support for dotnet standard 2.0 has been...

I'm looking for the OutlineModel.asListOfDocumentSymbols function. See here, https://github.com/microsoft/monaco-editor/issues/2959 JS code example: ``` import { editor } from 'monaco-editor'; import { ILanguageFeaturesService } from 'monaco-editor/esm/vs/editor/common/services/languageFeatures.js'; import { OutlineModel } from...

- Adds new types for document formatting - Adds the registerDocumentFormattingEditProvider - Adds an example to the SampleApp

I'm using Blazor server and added the editor like this on my AddScript page: `` I now see however that when I visit the same page the second time, the...

On the main Monaco site https://microsoft.github.io/monaco-editor/ for the diff editor there is a bar in the middle that displays arrows for merging changes left or right. I couldn't find where...

I'm pretty new to Blazor and am not that good at debugging. I'm running in rendermode `InteractiveServer` (otherwise its not working at all). * When I navigate to a form...

I cannot set value to code editor, I am getting this exception: `Microsoft.JSInterop.JSException: Couldn't find the editor with id: entity-view editors.length: 0` I am declaring code editor like this: ```...