@angular/material 21.0.0-next.3 → 21.0.0-next.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/button/testing/index.d.ts +2 -0
- package/core/focus-indicators/_private.scss +16 -0
- package/core/tokens/_classes.scss +115 -134
- 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/button/testing.mjs +5 -1
- package/fesm2022/button/testing.mjs.map +1 -1
- package/fesm2022/button.mjs +6 -6
- package/fesm2022/button.mjs.map +1 -1
- package/fesm2022/chips.mjs +6 -6
- package/fesm2022/chips.mjs.map +1 -1
- 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/radio.mjs +2 -2
- package/fesm2022/radio.mjs.map +1 -1
- package/fesm2022/stepper/testing.mjs +2 -1
- package/fesm2022/stepper/testing.mjs.map +1 -1
- package/fesm2022/stepper.mjs +4 -6
- package/fesm2022/stepper.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": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.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": "21.0.0-next.
|
|
356
|
+
"@angular/cdk": "21.0.0-next.5",
|
|
357
357
|
"@angular/core": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
|
|
358
358
|
"@angular/common": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
|
|
359
359
|
"@angular/forms": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.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 = `~21.0.0-next.
|
|
22
|
+
const fallbackMaterialVersionRange = `~21.0.0-next.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
|
@@ -132,7 +132,8 @@ declare class MatRow extends CdkRow {
|
|
|
132
132
|
}
|
|
133
133
|
/** Row that can be used to display a message when no data is shown in the table. */
|
|
134
134
|
declare class MatNoDataRow extends CdkNoDataRow {
|
|
135
|
-
|
|
135
|
+
_cellSelector: string;
|
|
136
|
+
constructor();
|
|
136
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatNoDataRow, never>;
|
|
137
138
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatNoDataRow, "ng-template[matNoDataRow]", never, {}, {}, never, never, true, never>;
|
|
138
139
|
}
|
package/tabs/index.d.ts
CHANGED
|
@@ -418,6 +418,7 @@ declare class MatTabHeader extends MatPaginatedTabHeader implements AfterContent
|
|
|
418
418
|
*/
|
|
419
419
|
declare class MatTabBodyPortal extends CdkPortalOutlet implements OnInit, OnDestroy {
|
|
420
420
|
private _host;
|
|
421
|
+
private _ngZone;
|
|
421
422
|
/** Subscription to events for when the tab body begins centering. */
|
|
422
423
|
private _centeringSub;
|
|
423
424
|
/** Subscription to events for when the tab body finishes leaving from center position. */
|