fix(aot): fix styles import

This commit is contained in:
Alexander Zhukov 2017-01-21 16:46:34 +03:00
parent c15fee6eb6
commit 3fa775f262
19 changed files with 44 additions and 50 deletions

View file

@ -1,8 +1,7 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';
@Component({
selector: 'inputs',
// encapsulation: ViewEncapsulation.None,
templateUrl: './inputs.html',
})
export class Inputs {

View file

@ -1,9 +1,8 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';
import { NgUploaderOptions } from 'ngx-uploader';
@Component({
selector: 'layouts',
// encapsulation: ViewEncapsulation.None,
styles: [],
templateUrl: './layouts.html',
})