ngx-material-components
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

Material Components for Angular (ngx-material-components)

Material Components for Angular web apps.

Angular Components implementing Material Components for the Web Adapters.

Installation

Install using NPM CLI

npm install --save ngx-material-components

or using Yarn CLI

yarn add ngx-material-components

Checkbox

Sass imports

// styles.scss 
@import "~@material/ripple/mdc-ripple";
@import "~@material/checkbox/mdc-checkbox";
@import "~@material/form-field/mdc-form-field"; // Optional - for example below 

Angular Module import

// my-feature.module.ts
import { MdcCheckboxModule } from 'ngx-material-component';
 
@NgModule({
  imports: [
    MdcCheckboxModule,
  ],
})
export class MyFeatureModule {}

Template usage

<!-- my-feature.component.html -->
<div class="mdc-form-field">
  <mdc-checkbox
    [checked]="true"
    controlId="my-checkbox"
    [disabled]="false"
    [indeterminate]="false"
    name="post-name"
    value="post-value"
    (checkedChange)="onCheckedChange($event)"></mdc-checkbox>
 
  <label for="my-checkbox">
    My checkbox
  </label>
</div>

Dependents (0)

Package Sidebar

Install

npm i ngx-material-components

Weekly Downloads

1

Version

0.1.2

License

MIT

Unpacked Size

185 kB

Total Files

50

Last publish

Collaborators

  • layzee