Skip to content

Commit

Permalink
fix(theme): rename MinimaThemeModule to ThemeMinimaModule
Browse files Browse the repository at this point in the history
  • Loading branch information
alyleui committed Aug 16, 2018
1 parent b1cc25f commit ab2e2f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/themes/minima/theme.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NgModule, Directive } from '@angular/core';
import { LyThemeConfig, LY_THEME_NAME, LyTheme2 } from '@alyle/ui';
import { LyThemeConfig, LY_THEME_NAME, LyTheme2, LyThemeModule } from '@alyle/ui';
import { MinimaLight } from './light';
import { MinimaDark } from './dark';

Expand All @@ -26,9 +26,9 @@ export class ThemeMinimaLight { }
export class ThemeMinimaDark { }

@NgModule({
declarations: [ThemeMinimaLight, ThemeMinimaDark],
exports: [ThemeMinimaLight, ThemeMinimaDark]
declarations: [ThemeMinimaDark, ThemeMinimaLight],
exports: [ThemeMinimaDark, ThemeMinimaLight]
})
export class MinimaThemeModule {}
export class ThemeMinimaModule { }

export interface IMinimaTheme extends MinimaLight, MinimaDark { }

0 comments on commit ab2e2f4

Please sign in to comment.