@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/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 {