diff --git a/src/components-examples/material/tabs/index.ts b/src/components-examples/material/tabs/index.ts index 5e64e11dc4e7..8adb7b40e8e5 100644 --- a/src/components-examples/material/tabs/index.ts +++ b/src/components-examples/material/tabs/index.ts @@ -4,13 +4,12 @@ export {TabGroupAsyncExample} from './tab-group-async/tab-group-async-example'; export {TabGroupBasicExample} from './tab-group-basic/tab-group-basic-example'; export {TabGroupCustomLabelExample} from './tab-group-custom-label/tab-group-custom-label-example'; export {TabGroupDynamicHeightExample} from './tab-group-dynamic-height/tab-group-dynamic-height-example'; -export {TabGroupHarnessExample} from './tab-group-harness/tab-group-harness-example'; export {TabGroupDynamicExample} from './tab-group-dynamic/tab-group-dynamic-example'; +export {TabGroupHarnessExample} from './tab-group-harness/tab-group-harness-example'; export {TabGroupHeaderBelowExample} from './tab-group-header-below/tab-group-header-below-example'; +export {TabGroupInkBarExample} from './tab-group-ink-bar/tab-group-ink-bar-example'; export {TabGroupLazyLoadedExample} from './tab-group-lazy-loaded/tab-group-lazy-loaded-example'; +export {TabGroupPaginatedExample} from './tab-group-paginated/tab-group-paginated-example'; export {TabGroupPreserveContentExample} from './tab-group-preserve-content/tab-group-preserve-content-example'; export {TabGroupStretchedExample} from './tab-group-stretched/tab-group-stretched-example'; export {TabNavBarBasicExample} from './tab-nav-bar-basic/tab-nav-bar-basic-example'; -export {TabGroupPaginatedExample} from './tab-group-paginated/tab-group-paginated-example'; -export {TabGroupInvertedExample} from './tab-group-inverted/tab-group-inverted-example'; -export {TabGroupInkBarExample} from './tab-group-ink-bar/tab-group-ink-bar-example'; diff --git a/src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.ts b/src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.ts index 86c32b41f047..359af3eb24f3 100644 --- a/src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.ts +++ b/src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.ts @@ -2,7 +2,7 @@ import {Component} from '@angular/core'; import {MatTabsModule} from '@angular/material/tabs'; /** - * @title Tab group with the headers on the bottom + * @title Tab group with headers below the content */ @Component({ selector: 'tab-group-header-below-example', diff --git a/src/components-examples/material/tabs/tab-group-inverted/tab-group-inverted-example.html b/src/components-examples/material/tabs/tab-group-inverted/tab-group-inverted-example.html deleted file mode 100644 index ad6c1dcbf521..000000000000 --- a/src/components-examples/material/tabs/tab-group-inverted/tab-group-inverted-example.html +++ /dev/null @@ -1,5 +0,0 @@ - - Content 1 - Content 2 - Content 3 - \ No newline at end of file diff --git a/src/components-examples/material/tabs/tab-group-inverted/tab-group-inverted-example.ts b/src/components-examples/material/tabs/tab-group-inverted/tab-group-inverted-example.ts deleted file mode 100644 index 01983ea46bfe..000000000000 --- a/src/components-examples/material/tabs/tab-group-inverted/tab-group-inverted-example.ts +++ /dev/null @@ -1,12 +0,0 @@ -import {Component} from '@angular/core'; -import {MatTabsModule} from '@angular/material/tabs'; - -/** - * @title Tab group with inverted tabs - */ -@Component({ - selector: 'tab-group-inverted-example', - templateUrl: 'tab-group-inverted-example.html', - imports: [MatTabsModule], -}) -export class TabGroupInvertedExample {} diff --git a/src/dev-app/tabs/tabs-demo.html b/src/dev-app/tabs/tabs-demo.html index 20aed4baf36b..85fa2cae5b08 100644 --- a/src/dev-app/tabs/tabs-demo.html +++ b/src/dev-app/tabs/tabs-demo.html @@ -20,9 +20,7 @@

Tab navigation bar basic

Paginated Tabs

-

Inverted Tabs

-

Ink bar fit to content

-

Tab group with the headers on the bottom

+

Tab group with headers below the content

diff --git a/src/dev-app/tabs/tabs-demo.ts b/src/dev-app/tabs/tabs-demo.ts index c0ee1e2ef83d..a9b3240010f3 100644 --- a/src/dev-app/tabs/tabs-demo.ts +++ b/src/dev-app/tabs/tabs-demo.ts @@ -16,7 +16,6 @@ import { TabGroupDynamicHeightExample, TabGroupHeaderBelowExample, TabGroupInkBarExample, - TabGroupInvertedExample, TabGroupLazyLoadedExample, TabGroupPaginatedExample, TabGroupStretchedExample, @@ -30,7 +29,6 @@ import {MatTabsModule} from '@angular/material/tabs'; templateUrl: 'tabs-demo.html', imports: [ TabGroupInkBarExample, - TabGroupInvertedExample, TabGroupPaginatedExample, TabNavBarBasicExample, TabGroupStretchedExample,