Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
angular-material
Advanced tools
This repository publishes the AngularJS Material v1.x library and localized installs using `npm`. You can find the component source-code for this library in the [AngularJS Material repository](https://github.com/angular/material).
This repository publishes the AngularJS Material v1.x library and localized installs
using npm
. You can find the component source-code for this library in the
AngularJS Material repository.
Please file issues and pull requests against that
angular/material
repository only. Do not file issues here on the publishing repository.
Included in this repository are the:
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.
You can install this package locally with npm
.
Please note: AngularJS Material requires AngularJS 1.7.2 to AngularJS 1.8.x.
# 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 the v1.1.22 version
npm install http://github.com/angular/bower-material/tarball/v1.1.22 --save
# To view all installed package
npm list
You have installed the AngularJS library, next 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/
.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="stylesheet" href="/node_modules/angular-material/angular-material.css">
</head>
<body ng-app="YourApp">
<div ng-controller="YourController">
</div>
<script src="/node_modules/angular/angular.js"></script>
<script src="/node_modules/angular-aria/angular-aria.js"></script>
<script src="/node_modules/angular-animate/angular-animate.js"></script>
<script src="/node_modules/angular-messages/angular-messages.js"></script>
<script src="/node_modules/angular-material/angular-material.js"></script>
<script>
// Include app dependency on ngMaterial
angular.module('YourApp', ['ngMaterial', 'ngMessages'])
.controller("YourController", YourController);
</script>
</body>
</html>
With the Google CDN, you will not need to download local copies of the distribution files. Instead, reference the CDN URLs to use those remote library files. This is especially useful when using online tools such as CodePen, Plunker, or jsFiddle.
<head>
<!-- Angular Material CSS now available via Google CDN; version 1.1.24 used here -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.24/angular-material.min.css">
</head>
<body>
<!-- Angular Material Dependencies -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular-animate.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular-aria.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular-messages.min.js"></script>
<!-- Angular Material Javascript now available via Google CDN; version 1.1.24 used here -->
<script src="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.24/angular-material.min.js"></script>
</body>
Note that the above sample references the 1.1.24 CDN release. Your version will change based on the latest stable release version.
/node_modules/angular-mocks/angular-mocks.js
/node_modules/angular-material/angular-material-mocks.js
Shown below is a karma-configuration file (karma.conf.js
) sample that may be a useful template for
your testing purposes:
module.exports = function(config) {
var SRC = [
'src/myApp/**/*.js',
'test/myApp/**/*.spec.js'
];
var LIBS = [
'node_modules/angular/angular.js',
'node_modules/angular-animate/angular-animate.js',
'node_modules/angular-aria/angular-aria.js',
'node_modules/angular-messages/angular-messages.js',
'node_modules/angular-material/angular-material.js',
'node_modules/angular-mocks/angular-mocks.js',
'node_modules/angular-material/angular-material-mocks.js'
];
config.set({
basePath: __dirname + '/..',
frameworks: ['jasmine'],
files: LIBS.concat(SRC),
port: 9876,
reporters: ['progress'],
colors: true,
autoWatch: false,
singleRun: true,
browsers: ['Chrome']
});
};
1.2.0-rc.2 (2020-07-28)
md-checkbox
, md-input-container
, md-radio-group
, and md-select
has been changed. You can now use the $default-horizontal-margin
Sass variable to override the default 16px
horizontal margin size. As part of this, md-radio-button
s inside of layout="row"
containers are now aligned vertically with other content as they no longer have a 16px
margin-bottom
. If you have previously added custom styles, to your components inside of a row layout, in order to give them extra margin-right
in LTR or margin-left
in RTL, you will need to re-evaluate those styles. In most cases, they can now be removed.$media
service in md-is-locked-open
. This was deprecated in favor of the $mdMedia
service. The functionality is the same and only a rename to the current name of the service is required..content('string')
methods and options. These were deprecated in favor of .textContent('string')
and .htmlContent('sanitized-string')'
methods and their associated options. Please note that use of .htmlContent
requires that the ngSanitize
module be loaded.If you have
alert = $mdDialog.alert()
.content('This is an example.');
It needs to be changed to
alert = $mdDialog.alert()
.textContent('This is an example.');
If you have
alert = $mdDialog.alert({
content: 'This is an example.'
});
It needs to be changed to
alert = $mdDialog.alert({
textContent: 'This is an example.'
});
$mdThemingProviderTheme.primaryColor()
and the related accent/warn/background APIs. These were deprecated in favor of $mdThemingProviderTheme.primaryPalette()
(and accent/warn/background) in 2015 and they have been logging warnings when used since then.*-lt-*
layout attributes and classes. This includes the following attributes and their matching classes, which have been giving deprecation warnings since 2015:md-auto-focus
directive. It was deprecated in favor of md-autofocus
. Please see the md-autofocus Docs for examples.md-sidenav-focus
directive. It was deprecated in favor of md-autofocus
. Please see the md-autofocus Docs and md-sidenav Basic Usage Demo for examples.$mdOpenMenu
API. It was deprecated in favor of $mdMenu.open
.md-on-append
attribute. It was deprecated in favor of md-transform-chip
or the simple notifier md-on-add
. Please see the md-chips Demos for examples of using md-transform-chip
.class="md-actions"
inside of an md-card
template. This is deprecated in favor of using the <md-card-actions>
element.class="md-actions"
inside of an md-dialog
template. This was deprecated in favor of using the <md-dialog-actions>
element.MdPanelRef.addClass()
, MdPanelRef.removeClass()
, and MdPanelRef.toggleClass()
functions have been removed. These were deprecated in 2016 in favor of using the panelContainer
or panelEl
JQLite elements that are referenced in the MdPanelRef object.Thank you to the contributors who helped with the v1.2.0-rc.2 release:
<img alt="Splaktar" src="https://avatars1.githubusercontent.com/u/3506071?v=4&s=117" width="117"> |<img alt="clshortfuse" src="https://avatars3.githubusercontent.com/u/9271155?v=4&s=117" width="117"> |<img alt="wagnermaciel" src="https://avatars1.githubusercontent.com/u/25158423?v=4&s=117" width="117"> | :---: |:---: |:---: | Splaktar |clshortfuse |wagnermaciel |
<a name="1.2.0-rc.1"></a>
FAQs
**[Support for legacy AngularJS ended on January 1st, 2022](https://goo.gle/angularjs-end-of-life). [See `@angular/core` for the actively supported Angular](https://npmjs.com/@angular/core).**
The npm package angular-material receives a total of 49,094 weekly downloads. As such, angular-material popularity was classified as popular.
We found that angular-material demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.