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,15 +1,15 @@
import {Component, ViewChild, ViewEncapsulation, Input, Output, ElementRef, EventEmitter} from '@angular/core';
import {Component, ViewChild, Input, Output, ElementRef, EventEmitter} from '@angular/core';
import {BaThemePreloader} from '../../../theme/services';
import './baAmChart.loader.ts';
import {BaAmChartThemeService} from './baAmChartTheme.service';
import 'style-loader!./baAmChart.scss';
@Component({
selector: 'ba-am-chart',
templateUrl: './baAmChart.html',
styleUrls: ['./baAmChart.scss'],
// // encapsulation: ViewEncapsulation.None,
providers: [BaAmChartThemeService],
})
export class BaAmChart {