Reputation: 2701
I have the following dependencies in my package.json for npm to find and install.
"@angular/material": "2.0.0-beta.1"
"angular-material": "^1.1.1"
In order to use the latest one's what should I specify? The reason I am looking to use this for its support against NVDA and JAWS with IE / FF / Chrome (on Windows) as specified in the below link.
The ones that I am looking to use is as below.
https://www.npmjs.com/package/material2
Upvotes: 0
Views: 1335
Reputation: 5758
2.0.0-beta.3
is the latest one right now. To be clear, that is angular material 2, which is a completely separate framework from angular material 1. If you are using angular 2, you have to use angular material 2. So you cannot have angular-material
in your package.json
.
Upvotes: 2