Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem committed May 28, 2024
1 parent f6cc3ec commit e888626
Show file tree
Hide file tree
Showing 25 changed files with 12 additions and 1,489 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ interface Monaco {

declare const monaco: Monaco;

function init(id: string, options: MonacoEditor.IStandaloneEditorConstructionOptions, dotNetHelper) {
const editor = monaco.editor.create(document.getElementById(id), options);
function init(el: HTMLElement, options: MonacoEditor.IStandaloneEditorConstructionOptions, dotNetHelper) {
const editor = monaco.editor.create(el, options);
editor.onDidChangeModelContent(()=> {
dotNetHelper.invokeMethodAsync("OnChange", editor.getValue());
});
Expand Down
8 changes: 0 additions & 8 deletions src/Component/BlazorComponent/Abstracts/BlockOrElement.cs

This file was deleted.

16 changes: 0 additions & 16 deletions src/Component/BlazorComponent/Abstracts/Builder/BuilderBase.cs

This file was deleted.

15 changes: 0 additions & 15 deletions src/Component/BlazorComponent/Abstracts/Builder/BuilderContext.cs

This file was deleted.

29 changes: 0 additions & 29 deletions src/Component/BlazorComponent/Abstracts/Builder/CssBuilder.cs

This file was deleted.

23 changes: 0 additions & 23 deletions src/Component/BlazorComponent/Abstracts/Builder/StyleBuilder.cs

This file was deleted.

112 changes: 0 additions & 112 deletions src/Component/BlazorComponent/Abstracts/Builder/ThemeCssBuilder.cs

This file was deleted.

174 changes: 0 additions & 174 deletions src/Component/BlazorComponent/Abstracts/ComponentCssProvider.cs

This file was deleted.

Loading

0 comments on commit e888626

Please sign in to comment.