@angular/material 20.2.3 → 20.2.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/core/tokens/m2/_md-sys-color-internal.scss +11 -0
- package/core/tokens/m2/_md-sys-color.scss +11 -2
- package/core/tokens/m3/_md-sys-color-internal.scss +11 -0
- package/core/tokens/m3/_md-sys-color.scss +5 -31
- package/core/tokens/m3/_md-sys-typescale-internal.scss +5 -0
- package/core/tokens/m3/_md-sys-typescale.scss +2 -16
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/form-field2.mjs +2 -2
- package/fesm2022/form-field2.mjs.map +1 -1
- package/fesm2022/table/testing.mjs +2 -2
- package/fesm2022/table/testing.mjs.map +1 -1
- package/fesm2022/table.mjs +8 -3
- package/fesm2022/table.mjs.map +1 -1
- package/fesm2022/tabs.mjs +11 -3
- package/fesm2022/tabs.mjs.map +1 -1
- package/package.json +2 -2
- package/schematics/ng-add/index.js +1 -1
- package/table/index.d.ts +2 -1
- package/tabs/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/material",
|
|
3
|
-
"version": "20.2.
|
|
3
|
+
"version": "20.2.5",
|
|
4
4
|
"description": "Angular Material",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
}
|
|
354
354
|
},
|
|
355
355
|
"peerDependencies": {
|
|
356
|
-
"@angular/cdk": "20.2.
|
|
356
|
+
"@angular/cdk": "20.2.5",
|
|
357
357
|
"@angular/core": "^20.0.0 || ^21.0.0",
|
|
358
358
|
"@angular/common": "^20.0.0 || ^21.0.0",
|
|
359
359
|
"@angular/forms": "^20.0.0 || ^21.0.0",
|
|
@@ -19,7 +19,7 @@ const package_config_1 = require("./package-config");
|
|
|
19
19
|
* Note that the fallback version range does not use caret, but tilde because that is
|
|
20
20
|
* the default for Angular framework dependencies in CLI projects.
|
|
21
21
|
*/
|
|
22
|
-
const fallbackMaterialVersionRange = `~20.2.
|
|
22
|
+
const fallbackMaterialVersionRange = `~20.2.5`;
|
|
23
23
|
/**
|
|
24
24
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
25
25
|
* automatically executed if developers run `ng add @angular/material`.
|
package/table/index.d.ts
CHANGED
|
@@ -133,7 +133,8 @@ declare class MatRow extends CdkRow {
|
|
|
133
133
|
}
|
|
134
134
|
/** Row that can be used to display a message when no data is shown in the table. */
|
|
135
135
|
declare class MatNoDataRow extends CdkNoDataRow {
|
|
136
|
-
|
|
136
|
+
_cellSelector: string;
|
|
137
|
+
constructor();
|
|
137
138
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatNoDataRow, never>;
|
|
138
139
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatNoDataRow, "ng-template[matNoDataRow]", never, {}, {}, never, never, true, never>;
|
|
139
140
|
}
|
package/tabs/index.d.ts
CHANGED
|
@@ -425,6 +425,7 @@ declare class MatTabHeader extends MatPaginatedTabHeader implements AfterContent
|
|
|
425
425
|
*/
|
|
426
426
|
declare class MatTabBodyPortal extends CdkPortalOutlet implements OnInit, OnDestroy {
|
|
427
427
|
private _host;
|
|
428
|
+
private _ngZone;
|
|
428
429
|
/** Subscription to events for when the tab body begins centering. */
|
|
429
430
|
private _centeringSub;
|
|
430
431
|
/** Subscription to events for when the tab body finishes leaving from center position. */
|