@angular/material v2.0.0-beta.12 compability update,

Lots of breaking changes,
all "md" prefixes changed with "mat" due to angular material deprecation of "md",
md2 package removed, its not compatible with latest material version, will be replaced with another date picker later.
This commit is contained in:
mustafahlvc
2017-10-10 16:37:14 +03:00
parent 55e1d8b2bc
commit c06e99dc97
394 changed files with 5513 additions and 4945 deletions

View File

@@ -1 +1 @@
<md-toolbar>My App</md-toolbar>
<mat-toolbar>My App</mat-toolbar>

View File

@@ -1,10 +1,12 @@
import {Component} from '@angular/core';
import { Component } from '@angular/core';
/**
* @title Basic toolbar
*/
@Component({
selector: 'toolbar-overview-example',
templateUrl: 'toolbar-overview-example.html',
selector : 'toolbar-overview-example',
templateUrl: 'toolbar-overview-example.html'
})
export class ToolbarOverviewExample {}
export class ToolbarOverviewExample
{
}