Material Angular

Material design for AngularJS

README

Material Design for AngularJS Apps npm version Build Status


Material Design is a specification for a
unified system of visual, motion, and interaction design that adapts across different devices. Our
goal is to deliver a lean, lightweight set of AngularJS-native UI elements that implement the
material design specification for use in AngularJS single-page applications (SPAs).

AngularJS Material is an implementation of Google's
for AngularJS (v1.x) developers.

For an implementation of the Material Design Specification (2018+),
please see the Angular Material project which is built for
Angular (v2+) developers.

### End-of-Life

AngularJS Material support has officially ended as of January 2022.
material.angular.io for the actively supported Angular Material.

Find details on reporting security issues

venn diagram

AngularJS Material includes a rich set of reusable, well-tested, and accessible UI components.

Quick Links:



Please note that using the latest version of AngularJS Material requires the use of
AngularJS 1.7.2 or higher.

AngularJS Material supports the browser versions defined in the browserslist field
of our package.json. Find out more on our

AngularJS Material supports the screen reader versions listed

## Online Documentation and Demos



- Visit material.angularjs.org online to review the API, see the
  components in action via live demos, and to read our detailed guides which include the layout system,
  theming system, typography, and more.
- Or you can build the documentation and demos locally; see
  Build Docs & Demos for details.

## Building

Developers can build AngularJS Material using NPM and gulp.

First install or update your local project's npm dependencies:

  1. ``` sh
  2. npm install
  3. ```

Install Gulp v3 globally:

  1. ``` sh
  2. npm install -g gulp@3
  3. ```

Then run the gulp tasks:

  1. ``` sh
  2. # To build `angular-material.js/.css` and `Theme` files in the `/dist` directory
  3. gulp build

  4. # To build the AngularJS Material Docs and Demos in `/dist/docs` directory
  5. gulp docs
  6. ```

For development, use the docs:watch NPM script to run in dev mode:

  1. ``` sh
  2. # To build the AngularJS Material Source, Docs, and Demos in watch mode
  3. npm run docs:watch
  4. ```

For more details on how the build process works and additional commands (available for testing and
debugging) developers should read the Build Guide.

## Installing Build (Distribution Files)

NPM


For developers not interested in building the AngularJS Material library... use NPM to install
and use the AngularJS Material distribution files.

Change to your project's root directory.

  1. ``` sh
  2. # To get the latest stable version, use NPM from the command line.
  3. npm install angular-material --save

  4. # To get the most recent, latest committed-to-master version use:
  5. npm install http://github.com/angular/bower-material#master --save
  6. ```

Other Dependency Managers


for more details on how to install and use the AngularJS Material distribution files within your local
project.

CDN


CDN versions of AngularJS Material are available.

With the Google CDN, you will not need to download local copies of the distribution files. Instead,
simply reference the CDN urls to easily use those remote library files. This is especially useful
when using online tools such as CodePen or Plunker.

  1. ``` html
  2.   <head>
  3. <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.2.1/angular-material.min.css">
  4. </head>
  5.   <body>
  6. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
  7.     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-animate.min.js"></script>
  8.     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-aria.min.js"></script>
  9.     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-messages.min.js"></script>
  10. <script src="https://ajax.googleapis.com/ajax/libs/angular_material/1.2.1/angular-material.min.js"></script>
  11.   </body>
  12. ```

Developers seeking the latest, most-current build versions can use GitCDN.xyz to
pull directly from our distribution repository:

  1. ``` html
  2.   <head>
  3. <link rel="stylesheet" href="https://gitcdn.xyz/cdn/angular/bower-material/master/angular-material.css">
  4. </head>
  5.   <body>
  6. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.js"></script>
  7.     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-animate.js"></script>
  8.     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-aria.js"></script>
  9.     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-messages.min.js"></script>
  10. <script src="https://gitcdn.xyz/cdn/angular/bower-material/master/angular-material.js"></script>
  11. </body>
  12. ```

Once you have all the necessary assets installed, add ngMaterial and ngMessages as dependencies for your
app:

  1. ``` js
  2. angular.module('myApp', ['ngMaterial', 'ngMessages']);
  3. ```