mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-22 01:47:08 +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,7 @@
|
||||
.example-icon {
|
||||
padding: 0 14px;
|
||||
}
|
||||
|
||||
.example-spacer {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<md-toolbar color="primary">
|
||||
<span>Custom Toolbar</span>
|
||||
|
||||
<md-toolbar-row>
|
||||
<span>Second Line</span>
|
||||
<span class="example-spacer"></span>
|
||||
<md-icon class="example-icon">verified_user</md-icon>
|
||||
</md-toolbar-row>
|
||||
|
||||
<md-toolbar-row>
|
||||
<span>Third Line</span>
|
||||
<span class="example-spacer"></span>
|
||||
<md-icon class="example-icon">favorite</md-icon>
|
||||
<md-icon class="example-icon">delete</md-icon>
|
||||
</md-toolbar-row>
|
||||
</md-toolbar>
|
||||
@@ -0,0 +1,11 @@
|
||||
import {Component} from '@angular/core';
|
||||
|
||||
/**
|
||||
* @title Multi-row toolbar
|
||||
*/
|
||||
@Component({
|
||||
selector: 'toolbar-multirow-example',
|
||||
templateUrl: 'toolbar-multirow-example.html',
|
||||
styleUrls: ['toolbar-multirow-example.css'],
|
||||
})
|
||||
export class ToolbarMultirowExample {}
|
||||
Reference in New Issue
Block a user