mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-22 01:06:10 +01:00
feat(rc6): update to rc6
This commit is contained in:
parent
18c6912c72
commit
053473a442
54 changed files with 187 additions and 193 deletions
|
|
@ -4,8 +4,6 @@ import {BubbleMapsService} from './bubbleMaps.service';
|
|||
|
||||
@Component({
|
||||
selector: 'bubble-maps',
|
||||
pipes: [],
|
||||
providers: [BubbleMapsService],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
styles: [require('./bubbleMaps.scss')],
|
||||
template: require('./bubbleMaps.html'),
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@ import {GoogleMapsLoader} from './googleMaps.loader';
|
|||
|
||||
@Component({
|
||||
selector: 'google-maps',
|
||||
pipes: [],
|
||||
providers: [],
|
||||
styles: [require('./googleMaps.scss')],
|
||||
template: require('./googleMaps.html'),
|
||||
})
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ import './leafletMaps.loader';
|
|||
|
||||
@Component({
|
||||
selector: 'leaflet-maps',
|
||||
pipes: [],
|
||||
providers: [],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
styles: [require('./leafletMaps.scss')],
|
||||
template: require('./leafletMaps.html')
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ import {LineMapsService} from './lineMaps.service';
|
|||
|
||||
@Component({
|
||||
selector: 'line-maps',
|
||||
pipes: [],
|
||||
providers: [LineMapsService],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
styles: [require('./lineMaps.scss')],
|
||||
template: require('./lineMaps.html')
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'maps',
|
||||
pipes: [],
|
||||
providers: [],
|
||||
styles: [],
|
||||
template: `<router-outlet></router-outlet>`
|
||||
})
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@ import { BubbleMaps } from './components/bubbleMaps/bubbleMaps.component';
|
|||
import { GoogleMaps } from './components/googleMaps/googleMaps.component';
|
||||
import { LeafletMaps } from './components/leafletMaps/leafletMaps.component';
|
||||
import { LineMaps } from './components/lineMaps/lineMaps.component';
|
||||
import { BubbleMapsService } from './components/bubbleMaps/bubbleMaps.service';
|
||||
import { LineMapsService } from './components/lineMaps/lineMaps.service';
|
||||
|
||||
|
||||
@NgModule({
|
||||
|
|
@ -24,6 +26,10 @@ import { LineMaps } from './components/lineMaps/lineMaps.component';
|
|||
GoogleMaps,
|
||||
LeafletMaps,
|
||||
LineMaps
|
||||
],
|
||||
providers: [
|
||||
BubbleMapsService,
|
||||
LineMapsService
|
||||
]
|
||||
})
|
||||
export default class MapsModule {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue