Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@webacad/ng-mat-codemirror

Web-ACAD11MIT0.1.0TypeScript support: included

CodeMirror form component for angular material

angular, forms, material, codemirror

readme

NPM version Build Status

WebACAD/MatCodeMirror

CodeMirror form component for angular material. Based on @webacad/ng-codemirror.

Dependencies

  • @angular/animations
  • @angular/cdk
  • @angular/common
  • @angular/core
  • @angular/forms
  • @angular/material
  • @angular/platform-browser
  • @webacad/ng-codemirror
  • codemirror
  • rxjs

Installation

$ npm install --save @webacad/ng-mat-codemirror

or with yarn

$ yarn add @webacad/ng-mat-codemirror

Register module

app.module.ts:

import {MatCodemirrorModule} from '@webacad/ng-mat-codemirror';

@NgModule({
    imports: [
        MatCodemirrorModule,
    ],
})
export class AppModule {}

Usage

<wa-mat-codemirror mode="javascript"></wa-codemirror>

Look here for more details.

Using in angular forms

This package implements all the necessary code for angular forms. That means that you can use it just like any other ordinary form control.

It is also fully ready for material's <mat-form-field> component.