@@ -28,20 +28,20 @@ Quick Links:
2828* [ Installing] ( #installing )
2929
3030
31- Please note that using AngularJS Material requires the use of ** [ AngularJS ] ( https://angularjs.org/ )
32- 1.4.x ** or higher.
31+ Please note that using the latest version of AngularJS Material requires the use of
32+ ** [ AngularJS ] ( https://angularjs.org/ ) 1.7.2 ** or higher.
3333
34- AngularJS Material is targeted for the browser versions defined in the ` browserslist ` field
35- of our [ package.json] ( package.json ) . Below is a screenshot from
36- [ browserl.ist] ( http://browserl.ist/?q=%3E+0.5%25%2C+last+2+versions%2C+Firefox+ESR%2C+not+ie+%3C%3D+10%2C+not+ie_mob+%3C%3D+10%2C+not+bb+%3C%3D+10%2C+not+op_mob+%3C%3D+12.1 )
37- that provides a visual representation of this configuration:
34+ AngularJS Material supports the browser versions defined in the ` browserslist ` field
35+ of our [ package.json] ( package.json ) . Find out more on our
36+ [ docs site] ( https://material.angularjs.org/latest/#browser-support ) .
3837
39- ![ AngularJS Material Browser Support] ( https://user-images.githubusercontent.com/3506071/50240047-c7e00780-0391-11e9-9241-6674a412ce94.png )
38+ AngularJS Material supports the screen reader versions listed
39+ [ here] ( https://material.angularjs.org/latest/#screen-reader-support ) .
4040
4141## <a name =" demos " ></a > Online Documentation and Demos
4242
4343<div style =" border : 1px solid #ccc " >
44- <img src =" https://user-images.githubusercontent.com/3506071/39335179-ef92562e-497f-11e8-9f27-e23dc3a868f9 .png " alt = " AngularJS Material docs website " style =" display :block ;" >
44+ <img src =" https://user-images.githubusercontent.com/3506071/93010488-11578980-f55b-11ea-9ea3-c4a7bffd20b9 .png " style =" display :block ;" >
4545</div ><br >
4646
4747- Visit [ material.angularjs.org] ( https://material.angularjs.org/ ) online to review the API, see the
@@ -73,8 +73,8 @@ The minor builds (1.1.0, 1.2.0, 1.3.0) can contain breaking changes to CSS, APIs
7373Our formal release of ` minor ` builds is much less frequent. The release process for ` minor ` builds is currently
7474being re-evaluated.
7575
76- > For the purposes of AngularJS Material, you * could* think of the patch releases as being * minor* changes
77- and the 'minor' releases as being * major* changes according to semver.
76+ > For the purposes of AngularJS Material, you * could* think of the patch releases as being * minor* changes,
77+ and the 'minor' releases as being * major* changes according to semver.
7878
7979## <a name =" contributing " ></a > Contributing
8080
@@ -95,7 +95,7 @@ It is important to note that for each release, the [ChangeLog](CHANGELOG.md) is
9595itemize all:
9696
9797- Bug Fixes
98- - New Features
98+ - New Enhancements
9999- Breaking Changes
100100
101101## <a name =" building " ></a > Building
@@ -108,6 +108,12 @@ First install or update your local project's **npm** dependencies:
108108npm install
109109```
110110
111+ Install Gulp v3 globally:
112+
113+ ``` bash
114+ npm install -g gulp@3
115+ ```
116+
111117Then run the ** gulp** tasks:
112118
113119``` bash
@@ -148,23 +154,22 @@ npm install http://github.com/angular/bower-material#master --save
148154#### Other Dependency Managers
149155
150156Visit our [ distribution repository] ( https://github.com/angular/bower-material/blob/master/README.md )
151- for more details on how to install and use the AngularJS Material distribution
152- files within your local project.
157+ for more details on how to install and use the AngularJS Material distribution files within your local
158+ project.
153159
154160#### CDN
155161
156162CDN versions of AngularJS Material are available.
157163
158- With the Google CDN, you will not need to download local copies of the distribution files. Instead
164+ With the Google CDN, you will not need to download local copies of the distribution files. Instead,
159165simply reference the CDN urls to easily use those remote library files. This is especially useful
160- when using online tools such as [ CodePen] ( http://codepen.io/ ) , [ Plunker] ( http://plnkr.co/ ) , or
161- [ JSFiddle] ( http://jsfiddle.net/ ) .
166+ when using online tools such as [ CodePen] ( http://codepen.io/ ) or [ Plunker] ( http://plnkr.co/ ) .
162167
163168``` html
164169 <head >
165170
166- <!-- AngularJS Material CSS now available via Google CDN; version 1.1.21 used here -->
167- <link rel =" stylesheet" href =" https://ajax.googleapis.com/ajax/libs/angular_material/1.1.21 /angular-material.min.css" >
171+ <!-- AngularJS Material CSS now available via Google CDN; version 1.2.0 used here -->
172+ <link rel =" stylesheet" href =" https://ajax.googleapis.com/ajax/libs/angular_material/1.2.0 /angular-material.min.css" >
168173
169174 </head >
170175 <body >
@@ -175,8 +180,8 @@ when using online tools such as [CodePen](http://codepen.io/), [Plunker](http://
175180 <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular-aria.min.js" ></script >
176181 <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular-messages.min.js" ></script >
177182
178- <!-- AngularJS Material Javascript now available via Google CDN; version 1.1.21 used here -->
179- <script src =" https://ajax.googleapis.com/ajax/libs/angular_material/1.1.22 /angular-material.min.js" ></script >
183+ <!-- AngularJS Material Javascript now available via Google CDN; version 1.2.0 used here -->
184+ <script src =" https://ajax.googleapis.com/ajax/libs/angular_material/1.2.0 /angular-material.min.js" ></script >
180185 </body >
181186```
182187
@@ -204,7 +209,8 @@ pull directly from our [distribution repository](https://github.com/angular/bowe
204209 </body >
205210```
206211
207- Once you have all the necessary assets installed, add ` ngMaterial ` and ` ngMessages ` as dependencies for your app:
212+ Once you have all the necessary assets installed, add ` ngMaterial ` and ` ngMessages ` as dependencies for your
213+ app:
208214
209215``` javascript
210216angular .module (' myApp' , [' ngMaterial' , ' ngMessages' ]);
0 commit comments