mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 00:40:12 +01:00
feat(loader): remove loaders
This commit is contained in:
parent
3fa775f262
commit
1c10938efe
15 changed files with 12 additions and 23 deletions
|
|
@ -46,7 +46,6 @@ ng2-admin/
|
||||||
│ │ │
|
│ │ │
|
||||||
│ │ ├──app.component.ts * main application component
|
│ │ ├──app.component.ts * main application component
|
||||||
│ │ │
|
│ │ │
|
||||||
│ │ ├──app.loader.ts * requires initial css styles (most important for application loading stage)
|
|
||||||
│ │ │
|
│ │ │
|
||||||
│ │ ├──app.menu.ts * menu pages routes
|
│ │ ├──app.menu.ts * menu pages routes
|
||||||
│ │ │
|
│ │ │
|
||||||
|
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
// this css loaded separately as a standalone file to speed up the initial styles loading
|
|
||||||
import './theme/initial.scss';
|
|
||||||
|
|
@ -2,7 +2,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
|
||||||
|
|
||||||
import {PieChartService} from './pieChart.service';
|
import {PieChartService} from './pieChart.service';
|
||||||
|
|
||||||
import './pieChart.loader.ts';
|
import 'easy-pie-chart/dist/jquery.easypiechart.js';
|
||||||
import 'style-loader!./pieChart.scss';
|
import 'style-loader!./pieChart.scss';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
import 'easy-pie-chart/dist/jquery.easypiechart.js';
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import {Component} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
|
|
||||||
import './trafficChart.loader.ts';
|
|
||||||
import {TrafficChartService} from './trafficChart.service';
|
import {TrafficChartService} from './trafficChart.service';
|
||||||
import * as Chart from 'chart.js';
|
import * as Chart from 'chart.js';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
import * as GoogleMapsLoader from 'google-maps';
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import {Component, ElementRef} from '@angular/core';
|
import {Component, ElementRef} from '@angular/core';
|
||||||
|
|
||||||
import './leafletMaps.loader';
|
import 'leaflet-map';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'leaflet-maps',
|
selector: 'leaflet-maps',
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
import 'leaflet-map';
|
|
||||||
|
|
@ -2,7 +2,14 @@ import {Component, ViewChild, Input, Output, ElementRef, EventEmitter} from '@an
|
||||||
|
|
||||||
import {BaThemePreloader} from '../../../theme/services';
|
import {BaThemePreloader} from '../../../theme/services';
|
||||||
|
|
||||||
import './baAmChart.loader.ts';
|
import 'amcharts3';
|
||||||
|
import 'amcharts3/amcharts/plugins/responsive/responsive.js';
|
||||||
|
import 'amcharts3/amcharts/serial.js';
|
||||||
|
|
||||||
|
import 'ammap3';
|
||||||
|
import 'ammap3/ammap/maps/js/worldLow';
|
||||||
|
|
||||||
|
|
||||||
import {BaAmChartThemeService} from './baAmChartTheme.service';
|
import {BaAmChartThemeService} from './baAmChartTheme.service';
|
||||||
|
|
||||||
import 'style-loader!./baAmChart.scss';
|
import 'style-loader!./baAmChart.scss';
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
import 'amcharts3';
|
|
||||||
import 'amcharts3/amcharts/plugins/responsive/responsive.js';
|
|
||||||
import 'amcharts3/amcharts/serial.js';
|
|
||||||
|
|
||||||
import 'ammap3';
|
|
||||||
import 'ammap3/ammap/maps/js/worldLow';
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import {Component, ViewChild, Input, Output, ElementRef, EventEmitter} from '@angular/core';
|
import {Component, ViewChild, Input, Output, ElementRef, EventEmitter} from '@angular/core';
|
||||||
|
|
||||||
import './baFullCalendar.loader.ts';
|
import 'fullcalendar/dist/fullcalendar.js';
|
||||||
|
|
||||||
import 'style-loader!./baFullCalendar.scss';
|
import 'style-loader!./baFullCalendar.scss';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
import 'fullcalendar/dist/fullcalendar.js';
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import {Directive, Input, Output, ElementRef, EventEmitter} from '@angular/core';
|
import {Directive, Input, Output, ElementRef, EventEmitter} from '@angular/core';
|
||||||
|
|
||||||
import './baSlimScroll.loader.ts';
|
import 'jquery-slimscroll';
|
||||||
|
|
||||||
@Directive({
|
@Directive({
|
||||||
selector: '[baSlimScroll]'
|
selector: '[baSlimScroll]'
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
import 'jquery-slimscroll';
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue