Update angular core and cli to v19

This commit is contained in:
2025-02-11 11:02:53 +10:30
parent 15bf115441
commit 5a4541435f
18 changed files with 90 additions and 111 deletions

View File

@@ -28,19 +28,18 @@ declare const __TAURI__: any;
type PreviewType = 'raw' | 'edit' | 'diff';
@Component({
selector: 'app-editor',
standalone: true,
imports: [
CommonModule,
ProtoFieldComponent,
MatButtonModule,
MatButtonToggleModule,
MatIconModule,
MonacoEditorModule,
FormsModule,
],
templateUrl: './editor.component.html',
styleUrl: './editor.component.scss',
selector: 'app-editor',
imports: [
CommonModule,
ProtoFieldComponent,
MatButtonModule,
MatButtonToggleModule,
MatIconModule,
MonacoEditorModule,
FormsModule,
],
templateUrl: './editor.component.html',
styleUrl: './editor.component.scss'
})
export class EditorComponent {
selectedFile = input<FileOrFolder>();