Skip to content
This repository was archived by the owner on Aug 19, 2024. It is now read-only.

Commit ba791f8

Browse files
committed
AG-2018 Rename ag-Grid to ag-Grid-Community
1 parent e3a0865 commit ba791f8

File tree

10 files changed

+16
-29
lines changed

10 files changed

+16
-29
lines changed

gulpfile.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@angular/platform-browser-dynamic": "6.0.9",
3131
"@angular/platform-server": "6.0.9",
3232
"@angular/router": "6.0.9",
33-
"ag-grid": "^18.1.1",
33+
"ag-grid-community": "^18.1.1",
3434
"ag-grid-angular": "^18.1.0",
3535
"ag-grid-enterprise": "^18.1.1",
3636
"bootstrap": "3.3.7",

src/app/date-component/date.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Component, OnDestroy} from "@angular/core";
2-
import {IDateParams} from "ag-grid/main";
3-
import {IDateAngularComp} from "ag-grid-angular/main";
2+
import {IDateParams} from "ag-grid-community";
3+
import {IDateAngularComp} from "ag-grid-angular";
44

55

66
@Component({

src/app/filters/proficiencyFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {IFilter, IFilterParams} from "ag-grid/main";
1+
import {IFilter, IFilterParams} from "ag-grid-community";
22

33
const FILTER_TITLE =
44
`<div style="text-align: center; background: lightgray; width: 100%; display: block; border-bottom: 1px solid grey;">

src/app/filters/skillFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import RefData from '../data/refData';
2-
import {IFilter, IFilterParams} from "ag-grid/main";
2+
import {IFilter, IFilterParams} from "ag-grid-community";
33

44
const SKILL_TEMPLATE =
55
`<label style="border: 1px solid lightgrey; margin: 4px; padding: 4px; display: inline-block;">

src/app/header-component/header.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Component, ElementRef, OnDestroy} from "@angular/core";
2-
import {IHeaderParams} from "ag-grid/main";
3-
import {IHeaderAngularComp} from "ag-grid-angular/main";
2+
import {IHeaderParams} from "ag-grid-community";
3+
import {IHeaderAngularComp} from "ag-grid-angular";
44

55
interface MyParams extends IHeaderParams {
66
menuIcon: string;

src/app/header-group-component/header-group.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Component, OnDestroy} from "@angular/core";
2-
import {IHeaderGroupParams} from "ag-grid/main";
3-
import {IHeaderGroupAngularComp} from "ag-grid-angular/main";
2+
import {IHeaderGroupParams} from "ag-grid-community";
3+
import {IHeaderGroupAngularComp} from "ag-grid-angular";
44

55
@Component({
66
templateUrl: 'header-group.component.html',

src/app/rich-grid-example/rich-grid.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Component, ViewEncapsulation} from "@angular/core";
2-
import {GridOptions} from "ag-grid/main";
2+
import {GridOptions} from "ag-grid-community";
33

44
import ProficiencyFilter from '../filters/proficiencyFilter';
55
import SkillFilter from '../filters/skillFilter';

src/tsconfig.app.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
"@angular/*": [
1919
"../node_modules/@angular/*"
2020
],
21-
"ag-grid": [
22-
"../node_modules/ag-grid"
21+
"ag-grid-community": [
22+
"../node_modules/ag-grid-community"
2323
],
24-
"ag-grid/*": [
25-
"../node_modules/ag-grid/*"
24+
"ag-grid-community/*": [
25+
"../node_modules/ag-grid-community/*"
2626
]
2727
}
2828
},

styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
@import "~ag-grid/dist/styles/ag-grid.css";
2-
@import "~ag-grid/dist/styles/ag-theme-balham.css";
1+
@import "~ag-grid-community/dist/styles/ag-grid.css";
2+
@import "~ag-grid-community/dist/styles/ag-theme-balham.css";
33
@import "~bootstrap/dist/css/bootstrap.min.css";

0 commit comments

Comments
 (0)