Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(): remove CovalentCoreModule since its been deprecated in beta.3 #539

Merged
merged 10 commits into from
May 5, 2017
5 changes: 3 additions & 2 deletions docs/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ npm install --save https://github.com/Teradata/covalent-nightly.git

**src/app/app.module.ts**
```ts
import { CovalentCoreModule } from '@covalent/core';
import { CovalentLayoutModule, CovalentStepsModule /*, any other modules */ } from '@covalent/core';
// (optional) Additional Covalent Modules imports
import { CovalentHttpModule } from '@covalent/http';
import { CovalentHighlightModule } from '@covalent/highlight';
Expand All @@ -45,7 +45,8 @@ import { CovalentDynamicFormsModule } from '@covalent/dynamic-forms';
// other imports
@NgModule({
imports: [
CovalentCoreModule,
CovalentLayoutModule,
CovalentStepsModule,
// (optional) Additional Covalent Modules imports
CovalentHttpModule.forRoot(),
CovalentHighlightModule,
Expand Down
4 changes: 3 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ module.exports = function (config) {
}
},
files: [
{ pattern: './src/test.ts', watched: false }
{pattern: './src/test.ts', watched: false},
// Include a Material theme in the test suite.
{pattern: 'node_modules/@angular/material/prebuilt-themes/indigo-pink.css', included: true, watched: true},
],
preprocessors: {
'./src/test.ts': ['@angular/cli']
Expand Down
17 changes: 15 additions & 2 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ import { LayoutsModule } from './components/layouts/';
import { StyleGuideModule } from './components/style-guide/';
import { appRoutes, appRoutingProviders } from './app.routes';

import { CovalentCoreModule } from '../platform/core';
import { MdButtonModule, MdListModule, MdIconModule, MdCardModule, MdCoreModule, MdMenuModule } from '@angular/material';

import { CovalentLayoutModule, CovalentExpansionPanelModule, CovalentNotificationsModule, CovalentMenuModule } from '../platform/core';
import { CovalentHighlightModule } from '../platform/highlight';
import { CovalentHttpModule } from '../platform/http';
import { CovalentMarkdownModule } from '../platform/markdown';
Expand All @@ -35,7 +37,18 @@ import { getSelectedLanguage, createTranslateLoader } from './utilities/translat
BrowserModule,
HttpModule,
JsonpModule,
CovalentCoreModule,
/** Material Modules */
MdCoreModule,
MdButtonModule,
MdListModule,
MdIconModule,
MdCardModule,
MdMenuModule,
/** Covalent Modules */
CovalentLayoutModule,
CovalentExpansionPanelModule,
CovalentNotificationsModule,
CovalentMenuModule,
CovalentHttpModule.forRoot(),
CovalentHighlightModule,
CovalentMarkdownModule,
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/components/chips/chips.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ <h3>Setup:</h3>
import { CovalentChipsModule } from '@covalent/core';
@NgModule({
imports: [
CovalentChipsModule, // or CovalentCoreModule (included inside of it)
CovalentChipsModule,
...
],
...
Expand Down
62 changes: 60 additions & 2 deletions src/app/components/components/components.module.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';

import { componentsRoutes } from './components.routes';

Expand Down Expand Up @@ -31,7 +35,15 @@ import { NgxTranslateDemoComponent } from './ngx-translate/ngx-translate.compone
import { NgxChartsModule } from '@swimlane/ngx-charts';
import { TranslateModule } from '@ngx-translate/core';

import { CovalentCoreModule } from '../../../platform/core';
import { MdButtonModule, MdListModule, MdIconModule, MdCardModule, MdMenuModule, MdInputModule, MdButtonToggleModule,
MdProgressSpinnerModule, MdSelectModule, MdSlideToggleModule, MdDialogModule, MdSnackBarModule, MdToolbarModule,
MdTabsModule, MdSidenavModule, MdTooltipModule, MdCheckboxModule, MdRadioModule, MdCoreModule, MdAutocompleteModule,
MdProgressBarModule, MdSliderModule, MdChipsModule, MdGridListModule, MdRippleModule } from '@angular/material';

import { CovalentCommonModule, CovalentLayoutModule, CovalentMediaModule, CovalentExpansionPanelModule, CovalentFileModule,
CovalentStepsModule, CovalentLoadingModule, CovalentDialogsModule, CovalentSearchModule, CovalentPagingModule,
CovalentNotificationsModule, CovalentMenuModule, CovalentChipsModule, CovalentDataTableModule, CovalentJsonFormatterModule,
} from '../../../platform/core';
import { CovalentHighlightModule } from '../../../platform/highlight';
import { CovalentMarkdownModule } from '../../../platform/markdown';
import { CovalentDynamicFormsModule } from '../../../platform/dynamic-forms';
Expand Down Expand Up @@ -68,7 +80,53 @@ import { DocumentationToolsModule } from '../../documentation-tools';
NgxTranslateDemoComponent,
],
imports: [
CovalentCoreModule,
/** Angular Modules */
BrowserModule,
BrowserAnimationsModule,
CommonModule,
FormsModule,
/** Material Modules */
MdCoreModule,
MdButtonModule,
MdListModule,
MdIconModule,
MdCardModule,
MdMenuModule,
MdInputModule,
MdSelectModule,
MdButtonToggleModule,
MdSlideToggleModule,
MdProgressSpinnerModule,
MdDialogModule,
MdSnackBarModule,
MdToolbarModule,
MdTabsModule,
MdSidenavModule,
MdTooltipModule,
MdCheckboxModule,
MdRadioModule,
MdAutocompleteModule,
MdSliderModule,
MdProgressBarModule,
MdChipsModule,
MdGridListModule,
MdRippleModule,
/** Covalent Modules */
CovalentCommonModule,
CovalentLayoutModule,
CovalentMediaModule,
CovalentExpansionPanelModule,
CovalentStepsModule,
CovalentDialogsModule,
CovalentLoadingModule,
CovalentSearchModule,
CovalentPagingModule,
CovalentFileModule,
CovalentNotificationsModule,
CovalentMenuModule,
CovalentChipsModule,
CovalentJsonFormatterModule,
CovalentDataTableModule,
CovalentHighlightModule,
CovalentMarkdownModule,
CovalentDynamicFormsModule,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ <h3>Setup:</h3>
import { CovalentDataTableModule } from '@covalent/core';
@NgModule({
imports: [
CovalentDataTableModule, // or CovalentCoreModule (included inside of it)
CovalentDataTableModule,
...
],
...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ <h3>Setup:</h3>

@NgModule({
imports: [
CovalentDialogsModule, // or CovalentCoreModule (included inside of it)
CovalentDialogsModule,
...
],
...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ <h3>Setup:</h3>
import { CovalentExpansionPanelModule } from '@covalent/core';
@NgModule({
imports: [
CovalentExpansionPanelModule, // or CovalentCoreModule (included inside of it)
CovalentExpansionPanelModule,
...
],
...
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/components/http/http.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ <h3>Setup:</h3>

@NgModule({
imports: [
HttpModule, /* or CovalentCoreModule */
HttpModule,
CovalentHttpModule.forRoot({
interceptors: [{
interceptor: CustomInterceptor, paths: ['**'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h3>Setup:</h3>
import { CovalentJsonFormatterModule } from '@covalent/core';
@NgModule({
imports: [
CovalentJsonFormatterModule, // or CovalentCoreModule (included inside of it)
CovalentJsonFormatterModule,
...
],
...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ <h3>Setup:</h3>

@NgModule({
imports: [
CovalentLoadingModule, // or CovalentCoreModule (included inside of it)
CovalentLoadingModule,
...
],
...
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/components/media/media.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h3>Setup:</h3>
import { CovalentMediaModule } from '@covalent/core';
@NgModule({
imports: [
CovalentMediaModule, // or CovalentCoreModule (included inside of it)
CovalentMediaModule,
...
],
...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ <h3>Setup:</h3>
import { CovalentNotificationsModule } from '@covalent/core';
@NgModule({
imports: [
CovalentNotificationsModule, // or CovalentCoreModule (included inside of it)
CovalentNotificationsModule,
...
],
...
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/components/paging/paging.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h3>Setup:</h3>
import { CovalentPagingModule } from '@covalent/core';
@NgModule({
imports: [
CovalentPagingModule, // or CovalentCoreModule (included inside of it)
CovalentPagingModule,
...
],
...
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/components/search/search.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ <h3>Setup:</h3>
import { CovalentSearchModule } from '@covalent/core';
@NgModule({
imports: [
CovalentSearchModule, // or CovalentCoreModule (included inside of it)
CovalentSearchModule,
...
],
...
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/components/steps/steps.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ <h3>Setup:</h3>
import { CovalentStepsModule } from '@covalent/core';
@NgModule({
imports: [
CovalentStepsModule, // or CovalentCoreModule (included inside of it)
CovalentStepsModule,
...
],
...
Expand Down
22 changes: 20 additions & 2 deletions src/app/components/docs/docs.module.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { CommonModule } from '@angular/common';

import { docsRoutes } from './docs.routes';

Expand All @@ -16,7 +19,9 @@ import { MockDataComponent } from './mock-data/mock-data.component';

import { DocumentationToolsModule } from '../../documentation-tools';

import { CovalentCoreModule } from '../../../platform/core';
import { MdButtonModule, MdListModule, MdIconModule, MdCardModule, MdToolbarModule, MdCoreModule } from '@angular/material';

import { CovalentLayoutModule, CovalentMediaModule } from '../../../platform/core';
import { CovalentHighlightModule } from '../../../platform/highlight';

@NgModule({
Expand All @@ -34,7 +39,20 @@ import { CovalentHighlightModule } from '../../../platform/highlight';
MockDataComponent,
],
imports: [
CovalentCoreModule,
/** Angular Modules */
BrowserModule,
BrowserAnimationsModule,
CommonModule,
/** Material Modules */
MdCoreModule,
MdButtonModule,
MdListModule,
MdIconModule,
MdCardModule,
MdToolbarModule,
/** Covalent Modules */
CovalentLayoutModule,
CovalentMediaModule,
CovalentHighlightModule,
DocumentationToolsModule,
docsRoutes,
Expand Down
24 changes: 22 additions & 2 deletions src/app/components/layouts/layouts.module.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { CommonModule } from '@angular/common';

import { layoutsRoutes } from './layouts.routes';

Expand All @@ -9,7 +12,9 @@ import { NavListComponent } from './nav-list/nav-list.component';
import { CardOverComponent } from './card-over/card-over.component';
import { ManageListComponent } from './manage-list/manage-list.component';

import { CovalentCoreModule } from '../../../platform/core';
import { MdButtonModule, MdListModule, MdIconModule, MdCardModule, MdToolbarModule, MdCoreModule } from '@angular/material';

import { CovalentLayoutModule, CovalentExpansionPanelModule, CovalentStepsModule, CovalentMediaModule } from '../../../platform/core';
import { CovalentHighlightModule } from '../../../platform/highlight';

import { DocumentationToolsModule } from '../../documentation-tools';
Expand All @@ -24,7 +29,22 @@ import { DocumentationToolsModule } from '../../documentation-tools';
ManageListComponent,
],
imports: [
CovalentCoreModule,
/** Angular Modules */
BrowserModule,
BrowserAnimationsModule,
CommonModule,
/** Material Modules */
MdCoreModule,
MdButtonModule,
MdListModule,
MdIconModule,
MdCardModule,
MdToolbarModule,
/** Covalent Modules */
CovalentLayoutModule,
CovalentExpansionPanelModule,
CovalentStepsModule,
CovalentMediaModule,
CovalentHighlightModule,
DocumentationToolsModule,
layoutsRoutes,
Expand Down
32 changes: 30 additions & 2 deletions src/app/components/style-guide/style-guide.module.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';

import { styleGuideRoutes } from './style-guide.routes';

Expand All @@ -15,7 +19,11 @@ import { UtilityStylesComponent } from './utility-styles/utility-styles.componen
import { ResourcesComponent } from './resources/resources.component';
import { NavigationDrawerComponent } from './navigation-drawer/navigation-drawer.component';

import { CovalentCoreModule } from '../../../platform/core';
import { MdButtonModule, MdListModule, MdIconModule, MdCardModule, MdToolbarModule, MdCoreModule,
MdInputModule, MdMenuModule, MdSelectModule } from '@angular/material';

import { CovalentLayoutModule, CovalentMediaModule, CovalentSearchModule, CovalentPagingModule,
CovalentExpansionPanelModule } from '../../../platform/core';
import { CovalentHighlightModule } from '../../../platform/highlight';

@NgModule({
Expand All @@ -34,7 +42,27 @@ import { CovalentHighlightModule } from '../../../platform/highlight';
NavigationDrawerComponent,
],
imports: [
CovalentCoreModule,
/** Angular Modules */
BrowserModule,
BrowserAnimationsModule,
CommonModule,
FormsModule,
/** Material Modules */
MdCoreModule,
MdButtonModule,
MdListModule,
MdIconModule,
MdCardModule,
MdToolbarModule,
MdInputModule,
MdMenuModule,
MdSelectModule,
/** Covalent Modules */
CovalentLayoutModule,
CovalentMediaModule,
CovalentSearchModule,
CovalentPagingModule,
CovalentExpansionPanelModule,
CovalentHighlightModule,
styleGuideRoutes,
],
Expand Down
Loading