3.0.0 • Published 2 years ago

@ngspot/ngx-errors-material v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

MIT commitizen PRs styled with prettier All Contributors

Reactive forms validation for pros

This package is expected to be installed together with the package @ngspot/ngx-errors when use use @angular/material inputs.

See full documentation for @ngspot/ngx-errors here.

Installation

npm install @ngspot/ngx-errors-material

Usage

Import library into application module:

import { NgxErrorsModule } from '@ngspot/ngx-errors';
import { NgxErrorsMaterialModule } from '@ngspot/ngx-errors-material'; // <-- import the module

@NgModule({
  imports: [
    NgxErrorsModule,
    NgxErrorsMaterialModule, // <-- include imported module in app module
  ],
})
export class MyAppModule {}