1.3.16 • Published 5 years ago

ng2-material-import v1.3.16

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

ng2-material-import

A simple module to import ALL material design for angular 2

NOTE This version is up to date with angular 2 material, so the inputs are no longer md but mat If you have a project that uses md (eg: <md-imput></md-input>) it will now be mat (eg: <mat-input></mat-input>)

This is the same for the attributes. Before <input mdInput> after <input matInput>

Changes

  • (16/7/2018): Updated package.json
  • (7/4/2018): Updated package.json to have the most recent and compatible versions with angular2
  • (8/4/2018): Added Stepper module { MatStepperModule }

Instalation

$> npm i --save-dev ng2-material-import

Adding to app.module.ts

...
import { MaterialImportModule } from "ng2-material-import";

@NgModule({
  imports: [
    MaterialImportModule
  ],
})
...

NOTE

If you are using BrowserModule which you will most likely will...

In your app.module.ts remove BrowserModule and add BrowserAnimationsModule

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MaterialImportModule } from "ng2-material-import";

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserAnimationsModule, MaterialImportModule],
  providers: [],
  bootstrap: [AppComponent]
})

Adding SCSS dependency for material

There are two ways of doing this: Add node_modules/ng2-material-import/theme/default.scss to the styles path in .angular-cli.json.

...

  "styles": [
    "styles.css",
    "../node_modules/ng2-material-import/theme/default.scss"
  ],

...

Or:

Create a folder called themes. Inside that folder add a .SCSS file. inside that file add these lines:

@import "~@angular/material/theming";
@include mat-core();
$default-app-primary: mat-palette($mat-indigo);
$default-app-accent: mat-palette($mat-pink, A200, A100, A400);
$default-app-warn: mat-palette($mat-red);
$default-app-theme: mat-light-theme(
  $default-app-primary,
  $default-app-accent,
  $default-app-warn
);
@include angular-material-theme($default-app-theme);

After that add that file to the angular-cli styles section

...

  "styles": [
    "styles.css",
    "theme/default.scss"
  ],

...

restart ng serve

Usage

use material as normal.

<mat-input-container>
  <input matInput placeholder="This is a placeholder" value="bla" />
</mat-input-container>

Please check the Angular 2 Material Component website for more information.

1.3.16

5 years ago

1.3.15

5 years ago

1.3.14

5 years ago

1.3.13

5 years ago

1.3.12

5 years ago

1.3.11

5 years ago

1.3.10

5 years ago

1.3.9

5 years ago

1.3.8

5 years ago

1.3.7

5 years ago

1.3.6

5 years ago

1.3.5

5 years ago

1.3.4

5 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.12

6 years ago

1.1.12

6 years ago

1.1.11

6 years ago

1.1.10

7 years ago

1.1.9

7 years ago

1.1.8

7 years ago

1.1.7

7 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago