mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 08:50:13 +01:00
refactor(spinner): spinner moved into services
This commit is contained in:
parent
30e27ed0ca
commit
f2c729e101
5 changed files with 4 additions and 3 deletions
|
|
@ -5,9 +5,9 @@ import {RouteConfig} from '@angular/router-deprecated';
|
||||||
|
|
||||||
import {Pages} from './pages';
|
import {Pages} from './pages';
|
||||||
import {AppState} from './app.state';
|
import {AppState} from './app.state';
|
||||||
import {BaThemeConfigProvider, BaThemeConfig, BaThemeSpinner} from './theme';
|
import {BaThemeConfigProvider, BaThemeConfig} from './theme';
|
||||||
import {BaThemeRun} from './theme/directives';
|
import {BaThemeRun} from './theme/directives';
|
||||||
import {BaImageLoaderService, BaThemePreloader} from './theme/services';
|
import {BaImageLoaderService, BaThemePreloader, BaThemeSpinner} from './theme/services';
|
||||||
|
|
||||||
import {layoutPaths} from './theme/theme.constants';
|
import {layoutPaths} from './theme/theme.constants';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
export * from './theme.spinner'
|
|
||||||
export * from './theme.constants'
|
export * from './theme.constants'
|
||||||
export * from './theme.configProvider'
|
export * from './theme.configProvider'
|
||||||
export * from './theme.config'
|
export * from './theme.config'
|
||||||
|
|
|
||||||
1
src/app/theme/services/baThemeSpinner/index.ts
Normal file
1
src/app/theme/services/baThemeSpinner/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
export * from './baThemeSpinner.service';
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
export * from './baImageLoader';
|
export * from './baImageLoader';
|
||||||
export * from './baThemePreloader';
|
export * from './baThemePreloader';
|
||||||
|
export * from './baThemeSpinner';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue