feat(angular-cli): integrate angular-cli (#989)

This commit is contained in:
hryb 2017-04-18 18:41:04 +03:00 committed by Alexander Zhukov
parent 7b8a6f4e88
commit 523f44b746
138 changed files with 4507 additions and 7170 deletions

View file

@ -1,11 +1,11 @@
import {Component} from '@angular/core';
import {BubbleMapsService} from './bubbleMaps.service';
import 'style-loader!./bubbleMaps.scss';
@Component({
selector: 'bubble-maps',
templateUrl: './bubbleMaps.html',
styleUrls: ['./bubbleMaps.scss']
})
export class BubbleMaps {

View file

@ -1,4 +1,4 @@
.bubble-maps {
:host /deep/.bubble-maps {
width: 100%;
height: calc(100vh - 283px);
font-size : 11px;

View file

@ -1,11 +1,11 @@
import {Component, ElementRef} from '@angular/core';
import 'leaflet-map';
import 'style-loader!./leafletMaps.scss';
@Component({
selector: 'leaflet-maps',
templateUrl: './leafletMaps.html'
templateUrl: './leafletMaps.html',
styleUrls: ['./leafletMaps.scss']
})
export class LeafletMaps {

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,11 @@
import {Component} from '@angular/core';
import {LineMapsService} from './lineMaps.service';
import 'style-loader!./lineMaps.scss';
@Component({
selector: 'line-maps',
templateUrl: './lineMaps.html'
templateUrl: './lineMaps.html',
styleUrls: ['./lineMaps.scss']
})
export class LineMaps {

View file

@ -1,4 +1,4 @@
.line-maps {
:host /deep/.line-maps {
width: 100%;
height: calc(100vh - 283px);
}