@angular/material 19.0.0-next.5 → 19.0.0-next.7
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/_index.scss +1 -1
- package/chips/index.d.ts +5 -1
- package/core/_core.scss +17 -3
- package/core/index.d.ts +64 -1
- package/fesm2022/chips.mjs +29 -18
- package/fesm2022/chips.mjs.map +1 -1
- package/fesm2022/core.mjs +203 -4
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/datepicker.mjs +2 -2
- package/fesm2022/datepicker.mjs.map +1 -1
- package/fesm2022/input.mjs +31 -7
- package/fesm2022/input.mjs.map +1 -1
- package/fesm2022/tabs.mjs +9 -1
- package/fesm2022/tabs.mjs.map +1 -1
- package/input/index.d.ts +3 -1
- package/package.json +2 -2
- package/prebuilt-themes/azure-blue.css +1 -1
- package/prebuilt-themes/cyan-orange.css +1 -1
- package/prebuilt-themes/deeppurple-amber.css +1 -1
- package/prebuilt-themes/indigo-pink.css +1 -1
- package/prebuilt-themes/magenta-violet.css +1 -1
- package/prebuilt-themes/pink-bluegrey.css +1 -1
- package/prebuilt-themes/purple-green.css +1 -1
- package/prebuilt-themes/rose-red.css +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/schematics/ng-update/index_bundled.js +6517 -1
- package/schematics/ng-update/index_bundled.js.map +4 -4
- package/tabs/index.d.ts +5 -1
package/tabs/index.d.ts
CHANGED
|
@@ -570,6 +570,8 @@ export declare class MatTabGroup implements AfterContentInit, AfterContentChecke
|
|
|
570
570
|
private _fitInkBarToContent;
|
|
571
571
|
/** Whether tabs should be stretched to fill the header. */
|
|
572
572
|
stretchTabs: boolean;
|
|
573
|
+
/** Alignment for tabs label. */
|
|
574
|
+
alignTabs: string | null;
|
|
573
575
|
/** Whether the tab group should grow to the size of the active tab. */
|
|
574
576
|
dynamicHeight: boolean;
|
|
575
577
|
/** The index of the active tab. */
|
|
@@ -688,7 +690,7 @@ export declare class MatTabGroup implements AfterContentInit, AfterContentChecke
|
|
|
688
690
|
/** Callback for when the focused state of a tab has changed. */
|
|
689
691
|
_tabFocusChanged(focusOrigin: FocusOrigin, index: number): void;
|
|
690
692
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatTabGroup, never>;
|
|
691
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatTabGroup, "mat-tab-group", ["matTabGroup"], { "color": { "alias": "color"; "required": false; }; "fitInkBarToContent": { "alias": "fitInkBarToContent"; "required": false; }; "stretchTabs": { "alias": "mat-stretch-tabs"; "required": false; }; "dynamicHeight": { "alias": "dynamicHeight"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "headerPosition": { "alias": "headerPosition"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "contentTabIndex": { "alias": "contentTabIndex"; "required": false; }; "disablePagination": { "alias": "disablePagination"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "preserveContent": { "alias": "preserveContent"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "focusChange": "focusChange"; "animationDone": "animationDone"; "selectedTabChange": "selectedTabChange"; }, ["_allTabs"], ["*"], true, never>;
|
|
693
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatTabGroup, "mat-tab-group", ["matTabGroup"], { "color": { "alias": "color"; "required": false; }; "fitInkBarToContent": { "alias": "fitInkBarToContent"; "required": false; }; "stretchTabs": { "alias": "mat-stretch-tabs"; "required": false; }; "alignTabs": { "alias": "mat-align-tabs"; "required": false; }; "dynamicHeight": { "alias": "dynamicHeight"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "headerPosition": { "alias": "headerPosition"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "contentTabIndex": { "alias": "contentTabIndex"; "required": false; }; "disablePagination": { "alias": "disablePagination"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "preserveContent": { "alias": "preserveContent"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "focusChange": "focusChange"; "animationDone": "animationDone"; "selectedTabChange": "selectedTabChange"; }, ["_allTabs"], ["*"], true, never>;
|
|
692
694
|
static ngAcceptInputType_fitInkBarToContent: unknown;
|
|
693
695
|
static ngAcceptInputType_stretchTabs: unknown;
|
|
694
696
|
static ngAcceptInputType_dynamicHeight: unknown;
|
|
@@ -921,6 +923,8 @@ export declare interface MatTabsConfig {
|
|
|
921
923
|
preserveContent?: boolean;
|
|
922
924
|
/** Whether tabs should be stretched to fill the header. */
|
|
923
925
|
stretchTabs?: boolean;
|
|
926
|
+
/** Alignment for the tabs label. */
|
|
927
|
+
alignTabs?: 'start' | 'center' | 'end';
|
|
924
928
|
}
|
|
925
929
|
|
|
926
930
|
export declare class MatTabsModule {
|