Skip to content

Commit

Permalink
Merge e2fc827 into c2becae
Browse files Browse the repository at this point in the history
  • Loading branch information
alexalex972 committed Jul 24, 2018
2 parents c2becae + e2fc827 commit 7278b85
Show file tree
Hide file tree
Showing 63 changed files with 69 additions and 69 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
- Each igGrid feature now has a separate Directive definition that needs to be imported and added to the module definition if the related feature is to be used in the grid.
In previous versions all fetaures were imported as a single Directive definition. Example:

import { Feature } from "../../src/igniteui.angular2";
import { Feature } from "../../src/main";

Now each feature has its own specific directive. For example for Paging feature:

import { Features, IgGridPagingFeature } from "../../src/igniteui.angular2";
import { Features, IgGridPagingFeature } from "../../src/main";


Also the syntax for specifying the features has been changed.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Coverage Status](https://coveralls.io/repos/github/IgniteUI/igniteui-angular-wrappers/badge.svg?branch=master)](https://coveralls.io/github/IgniteUI/igniteui-angular-wrappers?branch=master)
[![npm version](https://badge.fury.io/js/igniteui-angular-wrappers.svg)](https://badge.fury.io/js/igniteui-angular-wrappers)

Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular-wrappers).
Use the components found in `src\main.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular-wrappers).

**IMPORTANT** The repository has been renamed from `igniteui-angular2` to `igniteui-angular-wrappers`. Read more on our new [naming convention](https://www.infragistics.com/community/blogs/b/infragistics/posts/ignite-ui-github-repo-name-changes).

Expand Down Expand Up @@ -465,12 +465,12 @@ The command for running the tests is:

npm test

After that, if all tests successfully passed a code coverage for the `igniteui.angular2.ts` filse will be generated under the `./coverage` folder.
After that, if all tests successfully passed a code coverage for the `main.ts` filse will be generated under the `./coverage` folder.

To see the code coverage you can open one of the html files under `./coverage/html-report/src`.

**Note:** The code coverage is actually being generated on the `igniteui.angular2.js` file (comes from compilation of the source .ts file). That coverage is saved under the `coverage/karma-tmp` folder.
Since we need the code coverage of the `igniteui.angular2.js` file itself, we use the remap-istanbul module to remap the report from the .js file to the .ts file and save it under the `coverage/html-report` and `coverage/lcov.info`.
**Note:** The code coverage is actually being generated on the `main.js` file (comes from compilation of the source .ts file). That coverage is saved under the `coverage/karma-tmp` folder.
Since we need the code coverage of the `main.js` file itself, we use the remap-istanbul module to remap the report from the .js file to the .ts file and save it under the `coverage/html-report` and `coverage/lcov.info`.

---------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './samples';
import { IgGridComponent } from "../src/igniteui.angular2";
import { IgGridComponent } from "../src/main";

@NgModule({
imports: [ BrowserModule ],
Expand Down
8 changes: 4 additions & 4 deletions dist/npm/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ignite UI components for Angular

Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular-wrappers).
Use the components found in `src\main.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular-wrappers).

# Requirements

Expand Down Expand Up @@ -413,12 +413,12 @@ The command for running the tests is:

npm test

After that, if all tests successfully passed a code coverage for the `igniteui.angular2.ts` filse will be generated under the `./coverage` folder.
After that, if all tests successfully passed a code coverage for the `main.ts` filse will be generated under the `./coverage` folder.

To see the code coverage you can open one of the html files under `./coverage/html-report/src`.

**Note:** The code coverage is actually being generated on the `igniteui.angular2.js` file (comes from compilation of the source .ts file). That coverage is saved under the `coverage/karma-tmp` folder.
Since we need the code coverage of the `igniteui.angular2.js` file itself, we use the remap-istanbul module to remap the report from the .js file to the .ts file and save it under the `coverage/html-report` and `coverage/lcov.info`.
**Note:** The code coverage is actually being generated on the `main.js` file (comes from compilation of the source .ts file). That coverage is saved under the `coverage/karma-tmp` folder.
Since we need the code coverage of the `main.js` file itself, we use the remap-istanbul module to remap the report from the .js file to the .ts file and save it under the `coverage/html-report` and `coverage/lcov.info`.

---------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion dist/npm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "5.0.3",
"description" : "A packaged version of Ignite UI wrappers for Angular",
"license": "MIT",
"types": "igniteui.angular2.d.ts",
"types": "main.d.ts",
"main": "bundles/igniteui-angular-wrappers.umd.js",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import commonjs from 'rollup-plugin-commonjs';
import angular from 'rollup-plugin-angular';
import typescript from 'rollup-plugin-typescript';
export default {
entry: 'src/igniteui.angular2.ts',
entry: 'src/main.ts',
format: 'umd',
moduleName: 'igniteui-angular-wrappers',
sourceMap:true,
Expand Down
2 changes: 1 addition & 1 deletion samples/aot/samples/igGrid-AoT/app.module.ngsummary.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion samples/aot/src/igniteui.angular2.ngsummary.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion samples/igCombo/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgComboComponent } from "../../src/igniteui.angular2";
import { IgComboComponent } from "../../src/main";
import { Northwind } from "./../data/northwind";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igDataChart/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgDataChartComponent, IgZoombarComponent } from "../../src/igniteui.angular2";
import { IgDataChartComponent, IgZoombarComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
2 changes: 1 addition & 1 deletion samples/igDialog/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgDialogComponent } from "../../src/igniteui.angular2";
import { IgDialogComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
2 changes: 1 addition & 1 deletion samples/igEditors/app.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, NgModule } from '@angular/core';
import { IgCurrencyEditorComponent, IgDateEditorComponent, IgMaskEditorComponent, IgNumericEditorComponent,
IgPercentEditorComponent, IgTextEditorComponent, IgDatePickerComponent, IgTimePickerComponent } from "../../src/igniteui.angular2";
IgPercentEditorComponent, IgTextEditorComponent, IgDatePickerComponent, IgTimePickerComponent } from "../../src/main";
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igGrid-AoT/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgniteUIModule } from "../../src/igniteui.angular2";
import { IgniteUIModule } from "../../src/main";
import { FormsModule } from '@angular/forms';
import { Northwind } from "./../data/northwind";
import { BrowserModule } from '@angular/platform-browser';
Expand Down
2 changes: 1 addition & 1 deletion samples/igGrid-ComplexOpts/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgGridComponent, Column, Features, IgGridPagingFeature } from "../../src/igniteui.angular2";
import { IgGridComponent, Column, Features, IgGridPagingFeature } from "../../src/main";
import { FormsModule } from '@angular/forms';
import { Northwind } from "./../data/northwind";
import { BrowserModule } from '@angular/platform-browser';
Expand Down
2 changes: 1 addition & 1 deletion samples/igGrid-HTTPClient/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Injectable, NgModule } from '@angular/core';
import { IgGridComponent } from "../../src/igniteui.angular2";
import { IgGridComponent } from "../../src/main";
import { HttpClient, HttpResponse, HttpClientModule, HttpHeaders, } from '@angular/common/http';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igGrid-TopLevelOpts/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgGridComponent } from "../../src/igniteui.angular2";
import { IgGridComponent } from "../../src/main";
import { Northwind } from "./../data/northwind";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igGrid-callingMethods/app.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, NgModule, ViewChild } from '@angular/core';
import { IgGridComponent, Column, Features, IgGridPagingFeature, IgGridSelectionFeature, IgGridFilteringFeature, IgComboComponent,
IgTextEditorComponent, IgNumericEditorComponent, IgDateEditorComponent } from "../../src/igniteui.angular2";
IgTextEditorComponent, IgNumericEditorComponent, IgDateEditorComponent } from "../../src/main";
import { FormsModule } from '@angular/forms';
import { Northwind } from "./../data/northwind";
import { BrowserModule } from '@angular/platform-browser';
Expand Down
2 changes: 1 addition & 1 deletion samples/igGrid/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule,ViewChild } from '@angular/core';
import { IgGridComponent } from "../../src/igniteui.angular2";
import { IgGridComponent } from "../../src/main";
import { FormsModule } from '@angular/forms';
import { Northwind } from "./../data/northwind";
import { BrowserModule } from '@angular/platform-browser';
Expand Down
2 changes: 1 addition & 1 deletion samples/igHierarchicalGrid/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule} from '@angular/core';
import { IgHierarchicalGridComponent} from "../../src/igniteui.angular2";
import { IgHierarchicalGridComponent} from "../../src/main";
import { NorthwindEmployees} from "./../data/northwind-employees";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igHtmlEditor/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgHtmlEditorComponent } from "../../src/igniteui.angular2";
import { IgHtmlEditorComponent } from "../../src/main";
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igLayoutManager/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgLayoutManagerComponent } from "../../src/igniteui.angular2";
import { IgLayoutManagerComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
2 changes: 1 addition & 1 deletion samples/igMap/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgMapComponent } from "../../src/igniteui.angular2";
import { IgMapComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
2 changes: 1 addition & 1 deletion samples/igPivotGrid-FlatDataSource/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgPivotDataSelectorComponent, IgPivotGridComponent } from "../../src/igniteui.angular2";
import { IgPivotDataSelectorComponent, IgPivotGridComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
2 changes: 1 addition & 1 deletion samples/igPivotGrid-XmlaDataSource/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgPivotDataSelectorComponent, IgPivotGridComponent } from "../../src/igniteui.angular2";
import { IgPivotDataSelectorComponent, IgPivotGridComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
2 changes: 1 addition & 1 deletion samples/igTileManager/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgTileManagerComponent } from "../../src/igniteui.angular2";
import { IgTileManagerComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { candidates } from "./../data/candidates";
Expand Down
2 changes: 1 addition & 1 deletion samples/igTree/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule, ViewChild } from '@angular/core';
import { IgTreeComponent } from "../../src/igniteui.angular2";
import { IgTreeComponent } from "../../src/main";
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igTreeGrid/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgTreeGridComponent } from "../../src/igniteui.angular2";
import { IgTreeGridComponent } from "../../src/main";
import { Tasks } from "./../data/tasks";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand Down
2 changes: 1 addition & 1 deletion samples/igUpload/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgUploadComponent } from "../../src/igniteui.angular2";
import { IgUploadComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
2 changes: 1 addition & 1 deletion samples/igVideoPlayer/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, NgModule } from '@angular/core';
import { IgVideoPlayerComponent } from "../../src/igniteui.angular2";
import { IgVideoPlayerComponent } from "../../src/main";
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/unit/igbulletgraph/bulletgraph.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/igcombo/combo.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import { FormsModule } from '@angular/forms';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';
import { Northwind } from "../../../samples/data/northwind";

export function main() {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/igdatachart/chart.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 DataChart and Zoombar', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/igdatasoure/datasource.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as IG from '../../../src/igniteui.angular2';
import * as IG from '../../../src/main';

export function main() {
describe('Infragistics Angular DataSource', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/igdialog/dialog.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 Dialog', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/igdoughnutchart/doughnutchart.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 DoughnutChart', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/igeditors/editors.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { TestBed } from '@angular/core/testing';
import {Component, ViewChild, TemplateRef} from '@angular/core';
import { FormsModule } from '@angular/forms';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

declare const $: any;

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/igfunnerchart/funnelchart.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 FunnelChart', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/iggrid/grid.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 Grid', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/ighierarchicalgrid/hierarchicalgrid.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 HierarchicalGrid', function () {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/ightmleditor/htmleditor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import { FormsModule } from '@angular/forms';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 HtmlEditor', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/iglayoutmanager/layoutmanager.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 LayoutManager', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/iglineargauge/lineargauge.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// modeled after https://github.com/angular/angular/blob/cee2318110eeea115e5f6fc5bfc814cbaa7d90d8/modules/angular2/test/common/directives/ng_for_spec.ts
import { TestBed } from '@angular/core/testing';
import { Component, ViewChild } from '@angular/core';
import * as Infragistics from '../../../src/igniteui.angular2';
import * as Infragistics from '../../../src/main';

export function main() {
describe('Infragistics Angular2 Linear Gauge', () => {
Expand Down
Loading

0 comments on commit 7278b85

Please sign in to comment.