AG-1329 Move ag-grid-react and ag-grid-vue to modules
This commit is contained in:
@@ -64,7 +64,7 @@
|
||||
"@ag-community/grid-core": "^21.0.0",
|
||||
"@ag-community/grid-all-modules": "^21.0.0",
|
||||
"@ag-enterprise/grid-all-modules": "^21.0.0",
|
||||
"ag-grid-react": "~21.2.0",
|
||||
"@ag-community/grid-react": "~21.2.0",
|
||||
"bootstrap": "4.3.1",
|
||||
"d3": "4.9.1",
|
||||
"lodash": "4.17.11",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import React, {Component} from "react";
|
||||
import {AgGridColumn, AgGridReact} from "ag-grid-react";
|
||||
import {AgGridColumn, AgGridReact} from "@ag-community/grid-react";
|
||||
import RowDataFactory from "./RowDataFactory";
|
||||
import DateComponent from "./DateComponent.jsx";
|
||||
import SkillsCellRenderer from './SkillsCellRenderer.jsx';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, {Component} from "react";
|
||||
import {connect} from "react-redux";
|
||||
import {AgGridReact} from "ag-grid-react";
|
||||
import {AgGridReact} from "@ag-community/grid-react";
|
||||
|
||||
import PriceRenderer from "./PriceRenderer";
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, {useContext} from "react";
|
||||
import {Context} from "./store";
|
||||
import {AgGridReact} from "ag-grid-react";
|
||||
import {AgGridReact} from "@ag-community/grid-react";
|
||||
|
||||
/*
|
||||
* This component serves to display the row data (provided by redux)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, {Component} from 'react';
|
||||
import SimpleCellRenderer from './simpleCellRenderer.jsx';
|
||||
import {AgGridReact} from 'ag-grid-react';
|
||||
import {AgGridReact} from '@ag-community/grid-react';
|
||||
|
||||
// for community features
|
||||
import {AllCommunityModules} from "@ag-community/grid-all-modules";
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React, {Component} from "react";
|
||||
import {connect} from "react-redux";
|
||||
|
||||
import {AgGridReact} from "ag-grid-react";
|
||||
import {AgGridReact} from "@ag-community/grid-react";
|
||||
|
||||
class FxQuoteMatrix extends Component {
|
||||
constructor(props) {
|
||||
@@ -85,4 +85,4 @@ export default connect(
|
||||
rowData: state ? state.fxData : null
|
||||
}
|
||||
}
|
||||
)(FxQuoteMatrix);
|
||||
)(FxQuoteMatrix);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, {Component} from "react";
|
||||
|
||||
import {AgGridReact} from "ag-grid-react";
|
||||
import {AgGridReact} from "@ag-community/grid-react";
|
||||
|
||||
import map from "lodash/map";
|
||||
import difference from "lodash/difference";
|
||||
@@ -170,4 +170,4 @@ export default class extends Component {
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React, {Component} from "react";
|
||||
import {connect} from "react-redux";
|
||||
|
||||
import {AgGridReact} from "ag-grid-react";
|
||||
import {AgGridReact} from "@ag-community/grid-react";
|
||||
|
||||
class TopMoversGrid extends Component {
|
||||
constructor(props) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import React from 'react';
|
||||
import {AgGridReact} from 'ag-grid-react';
|
||||
import {AgGridReact} from '@ag-community/grid-react';
|
||||
|
||||
export const App: React.FunctionComponent = () => <AgGridReact invalidProperty columnDefs={[]} rowData={[]}/>;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import React from 'react';
|
||||
import {AgGridReact} from 'ag-grid-react';
|
||||
import {AgGridReact} from '@ag-community/grid-react';
|
||||
|
||||
export const App: React.FunctionComponent = () => <AgGridReact columnDefs={[]} rowData={[]}/>;
|
||||
|
||||
Reference in New Issue
Block a user