@rplaurindo/ng-matcheckdeprecated

Angular 5 or higher.

Usage no npm install needed!

<script type="module">
  import rplaurindoNgMatcheck from 'https://cdn.skypack.dev/@rplaurindo/ng-matcheck';
</script>

README

NgMatcheck

Requirements

  • Angular 5 or higher.

Installing

$ npm i @rplaurindo/ng-matcheck --save

API reference

Usage

Include the module into imports metadata key of NgModule decorator in your application, importing NgMatcheckModule from @rplaurindo/ng-matcheck, like that.

import { NgMatcheckModule } from '@rplaurindo/ng-matcheck';

@NgModule({
    imports: [
        NgMatcheckModule
    ]
})
export class MyModule() { }

Directives

Selector: lib-mat-checkbox-group Exported as: NgMatcheck.MatCheckboxGroupComponent

Properties

|Name|Description| |--|--| |@Input()
objectCollection: object[]| |@Input()
property: string|Property name of an object of the collection defined in objectCollection.| |@Input()
formProperty: string|Optional, if it doesn't defined it assumes the property.| |@Input()
filterTerm: string|A term of string type to filter objects defined in objectCollection, by propertyLabel.| |@Input() ngClass: any|Angular NgClass Direcrive| |@Input()
form: FormGroup | NgForm| |@Input()
propertyLabel: string| |@Input()
parent: ThisType<T>| |@Input()
callbackDeclarationOfDisabledProperty: ((matCheckbox: MatCheckbox) => boolean)|