This repository is used for publishing the AngularJS Material v1.x library and localized installs using `npm`. The component source-code for this library is in the [AngularJS Material repository](https://github.com/angular/material). > Please file issues and pull requests against that `angular/material` repository only. Do not file issues here on the deployment repository. ## Layouts and SCSS Included in this repository are the: * **[SCSS files](https://github.com/angular/bower-material/tree/master/modules/scss)** which are used to build the *.css files * **[Layout files](https://github.com/angular/bower-material/tree/master/modules/layouts)** which are used with the AngularJS Material (Flexbox) Layout API. > Note these are already included in the `angular-material.css` files. These copies are for direct developer access and contain IE flexbox fixes; as needed. ## Installing AngularJS Material You can install this package locally either with `npm`, `jspm`, or `bower` (deprecated). **Please note**: AngularJS Material requires **AngularJS 1.4.x** to **AngularJS 1.7.x**. **Please note**: AngularJS Material does not support AngularJS 1.7.1. ### npm ```shell # To install latest formal release npm install angular-material # To install latest release and update package.json npm install angular-material --save # To install from HEAD of master npm install http://github.com/angular/bower-material/tarball/master # or use alternate syntax to install HEAD from master npm install http://github.com/angular/bower-material#master --save # note: ^^ creates the following package.json dependency # "angular-material": "git+ssh://git@github.com/angular/bower-material.git#master" # To install a v1.1.9 version npm install http://github.com/angular/bower-material/tarball/v1.1.9 --save # To view all installed package npm list; ``` ### jspm ```shell # To install latest formal release jspm install angular-material # To install from HEAD of master jspm install angular-material=github:angular/bower-material@master # To view all installed package versions jspm inspect ``` Now you can use `require('angular-material')` when installing with **npm** or **jspm**, or when using Browserify or Webpack. ### bower ```shell # To get the latest stable version, use bower from the command line. bower install angular-material # To get the most recent, last committed-to-master version use: bower install 'angular-material#master' # To save the bower settings for future use: bower install angular-material --save # Later, you can use easily update with: bower update ``` ## Using the AngularJS Material Library Now that you have installed the AngularJS libraries, simply include the scripts and stylesheet in your main HTML file, in the order shown in the example below. Note that NPM will install the files under `/node_modules/angular-material/` and Bower will install them under `/bower_components/angular-material/`. ### npm ```html