npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng2-material-import

v1.3.16

Published

A simple module to import ALL material design for angular 2

Downloads

26

Readme

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.