feat(tab-bar): add expand and shape props for ionic theme (#29888)

Co-authored-by: ionitron <hi@ionicframework.com>
This commit is contained in:
Maria Hutt
2024-09-25 13:58:12 -07:00
committed by GitHub
parent bde1d0978d
commit 2af216737d
32 changed files with 500 additions and 26 deletions

View File

@ -2178,14 +2178,14 @@ export declare interface IonTab extends Components.IonTab {}
@ProxyCmp({
inputs: ['color', 'mode', 'selectedTab', 'theme', 'translucent']
inputs: ['color', 'expand', 'mode', 'selectedTab', 'shape', 'theme', 'translucent']
})
@Component({
selector: 'ion-tab-bar',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: ['color', 'mode', 'selectedTab', 'theme', 'translucent'],
inputs: ['color', 'expand', 'mode', 'selectedTab', 'shape', 'theme', 'translucent'],
})
export class IonTabBar {
protected el: HTMLElement;