build: replace @nga/theme and @nga/auth with @akveo/nga-theme and @akveo/nga-auth

This commit is contained in:
Alexander Zhukov 2017-06-26 12:38:12 +03:00
parent 2239e80e59
commit d351b3d6ff
13 changed files with 16 additions and 16 deletions

View file

@ -1,7 +1,7 @@
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import { NgaSidebarService, NgaMenuService } from '@nga/theme'; import { NgaSidebarService, NgaMenuService } from '@akveo/nga-theme';
import { NgaThemeService } from '@nga/theme/services/theme.service'; import { NgaThemeService } from '@akveo/nga-theme/services/theme.service';
@Component({ @Component({
selector: 'ngx-header', selector: 'ngx-header',

View file

@ -2,8 +2,8 @@
@import 'variables'; @import 'variables';
// framework component themes (styles tied to theme variables) // framework component themes (styles tied to theme variables)
@import '~@nga/theme/styles/globals'; @import '~@akveo/nga-theme/styles/globals';
@import '~@nga/auth/styles/all'; @import '~@akveo/nga-auth/styles/all';
// custom global styles // custom global styles
@import 'global'; @import 'global';

View file

@ -1,7 +1,7 @@
// nga theming framework // nga theming framework
@import '~@nga/theme/styles/theming'; @import '~@akveo/nga-theme/styles/theming';
// nga our of the box themes // nga our of the box themes
@import '~@nga/theme/styles/themes'; @import '~@akveo/nga-theme/styles/themes';
// which themes you what to enable (empty to enable all - not recommended) // which themes you what to enable (empty to enable all - not recommended)
$nga-enabled-themes: (default, light, cosmic); $nga-enabled-themes: (default, light, cosmic);

View file

@ -12,7 +12,7 @@ import {
NgaUserModule, NgaUserModule,
NgaActionsModule, NgaActionsModule,
NgaSearchModule, NgaSearchModule,
} from '@nga/theme'; } from '@akveo/nga-theme';
import { import {
HeaderComponent, HeaderComponent,

View file

@ -1,5 +1,5 @@
@import '../../@theme/styles/variables'; @import '../../@theme/styles/variables';
@import '~@nga/theme/styles/global/bootstrap/hero-buttons'; @import '~@akveo/nga-theme/styles/global/bootstrap/hero-buttons';
@include nga-install-component() { @include nga-install-component() {
nga-card-header { nga-card-header {

View file

@ -1,5 +1,5 @@
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { NgaTabsetModule } from '@nga/theme'; import { NgaTabsetModule } from '@akveo/nga-theme';
import { SharedModule } from '../../shared.module'; import { SharedModule } from '../../shared.module';
import { DashboardComponent } from './dashboard.component'; import { DashboardComponent } from './dashboard.component';

View file

@ -1,5 +1,5 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/variables';
@import '~@nga/theme/styles/global/bootstrap/hero-buttons'; @import '~@akveo/nga-theme/styles/global/bootstrap/hero-buttons';
@include nga-install-component() { @include nga-install-component() {
nga-card { nga-card {

View file

@ -1,4 +1,4 @@
import { NgaMenuItem } from '@nga/theme'; import { NgaMenuItem } from '@akveo/nga-theme';
import { List } from 'immutable'; import { List } from 'immutable';

View file

@ -1,6 +1,6 @@
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { NgaMenuModule, NgaSidebarModule, NgaThemeModule } from '@nga/theme'; import { NgaMenuModule, NgaSidebarModule, NgaThemeModule } from '@akveo/nga-theme';
import { menuItems } from './pages-menu'; import { menuItems } from './pages-menu';

View file

@ -1,5 +1,5 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/variables';
@import '~@nga/theme/styles/global/bootstrap/buttons'; @import '~@akveo/nga-theme/styles/global/bootstrap/buttons';
@mixin btn-bg($background) { @mixin btn-bg($background) {
background-color: $background; background-color: $background;

View file

@ -1,5 +1,5 @@
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { NgaActionsModule, NgaSearchModule, NgaUserModule } from '@nga/theme'; import { NgaActionsModule, NgaSearchModule, NgaUserModule } from '@akveo/nga-theme';
import { SharedModule } from '../../../shared.module'; import { SharedModule } from '../../../shared.module';

View file

@ -1,5 +1,5 @@
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { NgaTabsetModule, NgaRouteTabsetModule, NgaSearchModule } from '@nga/theme'; import { NgaTabsetModule, NgaRouteTabsetModule, NgaSearchModule } from '@akveo/nga-theme';
import { SharedModule } from '../../shared.module'; import { SharedModule } from '../../shared.module';

View file

@ -2,7 +2,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common'; import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router'; import { RouterModule } from '@angular/router';
import { NgaCardModule, NgaThemeModule } from '@nga/theme'; import { NgaCardModule, NgaThemeModule } from '@akveo/nga-theme';
@NgModule({ @NgModule({
exports: [ exports: [