You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prototype(tabs): create prototype tabs based on MDC web (#16805)
Adds an implementation of the Angular Material tabs that is based on MDC web. The API is exactly the same, except for a couple of differences:
1. The ink bar has been switched to use MDC's `tab-indicator`. As such the styling and the animation are slightly different.
2. Previously `MatTabLink` used to be a `Directive`, however now it's a `Component`, because we need some extra markup around the content.
<!-- TODO: copy implementation from existing tabs e2e page. -->
1
+
<section>
2
+
<mat-tab-group>
3
+
<mat-tab>
4
+
<ng-templatemat-tab-label>One</ng-template>
5
+
<mat-form-field>
6
+
<textareamatInputplaceholder="Autosize textarea" cdkTextareaAutosize>This is an autosize textarea, it should adjust to the size of its content.</textarea>
0 commit comments