@angular/material 13.3.6 → 13.3.9

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/menu.d.ts CHANGED
@@ -158,11 +158,6 @@ export declare class _MatMenuBase implements AfterContentInit, MatMenuPanel<MatM
158
158
  * @param origin Action from which the focus originated. Used to set the correct styling.
159
159
  */
160
160
  focusFirstItem(origin?: FocusOrigin): void;
161
- /**
162
- * Actual implementation that focuses the first item. Needs to be separated
163
- * out so we don't repeat the same logic in the public `focusFirstItem` method.
164
- */
165
- private _focusFirstItem;
166
161
  /**
167
162
  * Resets the active item in the menu. This is used when the menu is opened, allowing
168
163
  * the user to start from the first option when pressing the down arrow.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/material",
3
- "version": "13.3.6",
3
+ "version": "13.3.9",
4
4
  "description": "Angular Material",
5
5
  "repository": {
6
6
  "type": "git",
@@ -622,7 +622,7 @@
622
622
  },
623
623
  "peerDependencies": {
624
624
  "@angular/animations": "^13.0.0 || ^14.0.0-0",
625
- "@angular/cdk": "13.3.6",
625
+ "@angular/cdk": "13.3.9",
626
626
  "@angular/core": "^13.0.0 || ^14.0.0-0",
627
627
  "@angular/common": "^13.0.0 || ^14.0.0-0",
628
628
  "@angular/forms": "^13.0.0 || ^14.0.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 = `~13.3.6`;
21
+ const fallbackMaterialVersionRange = `~13.3.9`;
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 = `~13.3.6`;
21
+ const fallbackMaterialVersionRange = `~13.3.9`;
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`.
@@ -88,6 +88,8 @@ export declare abstract class MatPaginatedTabHeader implements AfterContentCheck
88
88
  protected abstract _itemSelected(event: KeyboardEvent): void;
89
89
  ngAfterViewInit(): void;
90
90
  ngAfterContentInit(): void;
91
+ /** Sends any changes that could affect the layout of the items. */
92
+ private _itemsResized;
91
93
  ngAfterContentChecked(): void;
92
94
  ngOnDestroy(): void;
93
95
  /** Handles keyboard events on the header. */