mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-21 12:37:12 +00:00
angular-in-memory-web-api updated,
+ Http changed with HttpClient, + Angular Material Element examples added, + angular2-markdown Library added
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
.example-form {
|
||||
min-width: 150px;
|
||||
max-width: 500px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.example-full-width {
|
||||
width: 100%;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<form class="example-form">
|
||||
<md-form-field class="example-full-width">
|
||||
<input mdInput placeholder="Favorite food" value="Sushi">
|
||||
</md-form-field>
|
||||
</form>
|
||||
@@ -0,0 +1,11 @@
|
||||
import {Component} from '@angular/core';
|
||||
|
||||
/**
|
||||
* @title Basic Inputs
|
||||
*/
|
||||
@Component({
|
||||
selector: 'input-overview-example',
|
||||
styleUrls: ['input-overview-example.css'],
|
||||
templateUrl: 'input-overview-example.html',
|
||||
})
|
||||
export class InputOverviewExample {}
|
||||
Reference in New Issue
Block a user