@angular/material 17.3.4 → 17.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/menu/index.d.ts CHANGED
@@ -117,7 +117,7 @@ export declare class MatMenu implements AfterContentInit, MatMenuPanel<MatMenuIt
117
117
  _allItems: QueryList<MatMenuItem>;
118
118
  /** Only the direct descendant menu items. */
119
119
  _directDescendantItems: QueryList<MatMenuItem>;
120
- /** Config object to be passed into the menu's ngClass */
120
+ /** Classes to be applied to the menu panel. */
121
121
  _classList: {
122
122
  [key: string]: boolean;
123
123
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/material",
3
- "version": "17.3.4",
3
+ "version": "17.3.5",
4
4
  "description": "Angular Material",
5
5
  "repository": {
6
6
  "type": "git",
@@ -478,7 +478,7 @@
478
478
  },
479
479
  "peerDependencies": {
480
480
  "@angular/animations": "^17.0.0 || ^18.0.0",
481
- "@angular/cdk": "17.3.4",
481
+ "@angular/cdk": "17.3.5",
482
482
  "@angular/core": "^17.0.0 || ^18.0.0",
483
483
  "@angular/common": "^17.0.0 || ^18.0.0",
484
484
  "@angular/forms": "^17.0.0 || ^18.0.0",
@@ -18,7 +18,7 @@ const package_config_1 = require("./package-config");
18
18
  * Note that the fallback version range does not use caret, but tilde because that is
19
19
  * the default for Angular framework dependencies in CLI projects.
20
20
  */
21
- const fallbackMaterialVersionRange = `~17.3.4`;
21
+ const fallbackMaterialVersionRange = `~17.3.5`;
22
22
  /**
23
23
  * Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
24
24
  * automatically executed if developers run `ng add @angular/material`.
@@ -18,7 +18,7 @@ const package_config_1 = require("./package-config");
18
18
  * Note that the fallback version range does not use caret, but tilde because that is
19
19
  * the default for Angular framework dependencies in CLI projects.
20
20
  */
21
- const fallbackMaterialVersionRange = `~17.3.4`;
21
+ const fallbackMaterialVersionRange = `~17.3.5`;
22
22
  /**
23
23
  * Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
24
24
  * automatically executed if developers run `ng add @angular/material`.
package/tabs/index.d.ts CHANGED
@@ -380,15 +380,9 @@ export declare class MatTab implements OnInit, OnChanges, OnDestroy {
380
380
  * Will be cleared if `aria-label` is set at the same time.
381
381
  */
382
382
  ariaLabelledby: string;
383
- /**
384
- * Classes to be passed to the tab label inside the mat-tab-header container.
385
- * Supports string and string array values, same as `ngClass`.
386
- */
383
+ /** Classes to be passed to the tab label inside the mat-tab-header container. */
387
384
  labelClass: string | string[];
388
- /**
389
- * Classes to be passed to the tab mat-tab-body container.
390
- * Supports string and string array values, same as `ngClass`.
391
- */
385
+ /** Classes to be passed to the tab mat-tab-body container. */
392
386
  bodyClass: string | string[];
393
387
  /** Portal that will be the hosted content of the tab */
394
388
  private _contentPortal;