Skip to content

Commit e79f7f9

Browse files
devversiontinayuangao
authored andcommitted
chore: add paginator to prerender check (#6167)
* Adds the paginator component to the universal app
1 parent f78726d commit e79f7f9

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/universal-app/kitchen-sink/kitchen-sink.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,12 @@ <h2>Tabs</h2>
198198
<a md-tab-link href="https://google.com" active>Also Google</a>
199199
</nav>
200200

201+
<h2>Paginator</h2>
202+
203+
<md-paginator [length]="100"
204+
[pageSizeOptions]="[5, 10, 25, 100]">
205+
</md-paginator>
206+
201207
<h2>Toolbar</h2>
202208
<md-toolbar>Basic toolbar</md-toolbar>
203209
<md-toolbar>

src/universal-app/kitchen-sink/kitchen-sink.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import {
1515
MdListModule,
1616
MdMenuModule,
1717
MdNativeDateModule,
18+
MdPaginatorModule,
1819
MdProgressBarModule,
1920
MdProgressSpinnerModule,
2021
MdRadioModule,
@@ -56,6 +57,7 @@ export class KitchenSink { }
5657
MdListModule,
5758
MdMenuModule,
5859
MdNativeDateModule,
60+
MdPaginatorModule,
5961
MdProgressBarModule,
6062
MdProgressSpinnerModule,
6163
MdRadioModule,

0 commit comments

Comments
 (0)