@@ -3,19 +3,19 @@ import Card from "react-materialize/lib/Card";
33import Icon from "react-materialize/lib/Icon" ;
44import Textarea from "react-materialize/lib/Textarea" ;
55import Button from "react-materialize/lib/Button" ;
6- import NeoTable from ".. /report/table/NeoTable " ;
7- import NeoPagination from "../report/table/NeoPagination " ;
8- import NeoGraphViz from ".. /report/graph/NeoGraphVis " ;
6+ import NeoTable from "./report/NeoTableReport " ;
7+ import NeoPagination from "./footer/NeoTableFooter " ;
8+ import NeoGraphViz from "./report/NeoGraphVisReport " ;
99import Col from "react-materialize/lib/Col" ;
1010import NeoCardSettings from "./NeoCardSettings" ;
11- import NeoJSONView from ".. /report/json/NeoJSONView " ;
12- import NeoGraphChips from "../report/graph/NeoGraphChips " ;
13- import NeoMarkdownView from ".. /report/text/NeoMarkdownView " ;
14- import NeoBarChart from ".. /report/bar/NeoBarChart " ;
15- import NeoBarPropertySelect from "../report/bar/NeoBarPropertySelect " ;
16- import NeoLineChart from ".. /report/line/NeoLineChart " ;
17- import NeoLinePropertySelect from "../report/line/NeoLinePropertySelect " ;
18- import NeoPropertySelectReport from ".. /report/select /NeoPropertySelectReport" ;
11+ import NeoJSONView from "./report/NeoJSONViewReport " ;
12+ import NeoGraphChips from "./footer/NeoGraphVisFooter " ;
13+ import NeoMarkdownView from "./report/NeoMarkdownReport " ;
14+ import NeoBarChart from "./report/NeoBarChartReport " ;
15+ import NeoBarPropertySelect from "./footer/NeoBarChartFooter " ;
16+ import NeoLineChart from "./report/NeoLineChartReport " ;
17+ import NeoLinePropertySelect from "./footer/NeoLineChartFooter " ;
18+ import NeoPropertySelectReport from "./report/NeoPropertySelectReport" ;
1919
2020
2121let emptyAction = < div key = { 0 } /> ;
@@ -24,7 +24,7 @@ let emptyAction = <div key={0}/>;
2424 * A NeoCard represents a single card in a dashboard.
2525 * A card will always have a report and a settings view.
2626 */
27- class NeoCard extends React . Component {
27+ export class NeoCard extends React . Component {
2828 /**
2929 * The default state of a NeoCard is set based on the properties it is initialized with.
3030 */
@@ -561,7 +561,7 @@ class NeoCard extends React.Component {
561561 * This button sits in the same list as regular cards.
562562 * After clicking the button, a new card gets added the dashboard.
563563 */
564- class AddNeoCard extends React . Component {
564+ export class AddNeoCard extends React . Component {
565565 constructor ( props ) {
566566 super ( props ) ;
567567 }
@@ -582,5 +582,3 @@ class AddNeoCard extends React.Component {
582582
583583}
584584
585- export const NeoCardComponent = NeoCard ;
586- export const AddNeoCardComponent = AddNeoCard ;
0 commit comments