You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@angular/material

Package Overview
Dependencies
Maintainers
2
Versions
615
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular/material - npm Package Compare versions

Comparing version

to
20.1.2

4

package.json
{
"name": "@angular/material",
"version": "20.1.1",
"version": "20.1.2",
"description": "Angular Material",

@@ -356,3 +356,3 @@ "repository": {

"peerDependencies": {
"@angular/cdk": "20.1.1",
"@angular/cdk": "20.1.2",
"@angular/core": "^20.0.0 || ^21.0.0",

@@ -359,0 +359,0 @@ "@angular/common": "^20.0.0 || ^21.0.0",

@@ -22,3 +22,3 @@ "use strict";

*/
const fallbackMaterialVersionRange = `~20.1.1`;
const fallbackMaterialVersionRange = `~20.1.2`;
/**

@@ -25,0 +25,0 @@ * Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be

@@ -25,3 +25,10 @@ "use strict";

return (host, context) => {
const palettes = options.theme || 'azure-blue';
let palettes = options.theme || 'azure-blue';
// For a long time, theme param could be "custom" which meant to add a custom theme. This option
// was removed since we always add a custom theme, and we expect this option to be the
// user's preferred palettes. However it's possible that users will have hardcoded CLI commands
// that pass "--theme custom" and we can gracefully handle this by assuming azure-blue.
if (palettes === 'custom') {
palettes = 'azure-blue';
}
return insertCustomTheme(palettes, options.project, host, context.logger);

@@ -28,0 +35,0 @@ };

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet