Skip to content

build: add MDC components to SSR kitchen sink #19013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 32 additions & 5 deletions src/universal-app/kitchen-sink-mdc/kitchen-sink-mdc.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,25 @@ <h2>Button</h2>

<h2>MDC card</h2>

<!-- TODO: Copy kitchen sink examples for mat-card here -->
Not yet implemented.
<mat-card>
Simple card
</mat-card>

<mat-card>
<mat-card-title>Complicated card</mat-card-title>
<mat-card-subtitle>Subtitle</mat-card-subtitle>
<mat-card-content>
<p>This is some stuff</p>
<p>And more stuff</p>
</mat-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
<mat-card-footer>
Hurray
</mat-card-footer>
</mat-card>

<h2>MDC checkbox</h2>

Expand Down Expand Up @@ -48,10 +65,20 @@ <h2>MDC menu</h2>
<button mat-menu-item disabled>Sombra</button>
</mat-menu>

<h2>MDC radio</h2>
<h2>MDC Radio buttons</h2>

<!-- TODO: Copy kitchen sink examples for mat-radio here -->
Not yet implemented.
<h3>MDC Radio group</h3>
<mat-radio-group>
<mat-radio-button>Charmander</mat-radio-button>
<mat-radio-button>Squirtle</mat-radio-button>
<mat-radio-button>Bulbasaur</mat-radio-button>
</mat-radio-group>

<h3>MDC Standalone radios</h3>
<mat-radio-button name="onions">White</mat-radio-button>
<mat-radio-button name="onions">Yellow</mat-radio-button>
<mat-radio-button name="onions">Green</mat-radio-button>
<mat-radio-button name="onions" disabled>Red</mat-radio-button>

<h2>MDC slide-toggle</h2>

Expand Down