angular2-mdl
Version:
Angular 2 components, directives and styles based on material design lite https://getmdl.io.
19 lines • 739 B
JavaScript
import { Component, ViewEncapsulation } from '@angular/core';
export var MdlLayoutTitleComponent = (function () {
function MdlLayoutTitleComponent() {
}
MdlLayoutTitleComponent.decorators = [
{ type: Component, args: [{
selector: 'mdl-layout-title',
host: {
'[class.mdl-layout-title]': 'true'
},
template: '<ng-content></ng-content>',
encapsulation: ViewEncapsulation.None
},] },
];
/** @nocollapse */
MdlLayoutTitleComponent.ctorParameters = function () { return []; };
return MdlLayoutTitleComponent;
}());
//# sourceMappingURL=mdl-layout-title.component.js.map