Skip to content
Snippets Groups Projects
Unverified Commit 8c43c78f authored by Neil's avatar Neil Committed by GitHub
Browse files

Custom reports reorganize table graph files (#2153)


* reorg

* notes

* Update upcoming-release-notes/2153.md

Co-authored-by: default avatarDJ Mountney <david.mountney@twkie.net>

* merge fixes

* fix

* another

* f

---------

Co-authored-by: default avatarDJ Mountney <david.mountney@twkie.net>
parent e0d82fd4
No related branches found
No related tags found
No related merge requests found
......@@ -9,11 +9,11 @@ import { BarLineGraph } from './graphs/BarLineGraph';
import { DonutGraph } from './graphs/DonutGraph';
import { LineGraph } from './graphs/LineGraph';
import { StackedBarGraph } from './graphs/StackedBarGraph';
import { ReportTable } from './graphs/tableGraph/ReportTable';
import { ReportTableHeader } from './graphs/tableGraph/ReportTableHeader';
import { ReportTableList } from './graphs/tableGraph/ReportTableList';
import { ReportTableTotals } from './graphs/tableGraph/ReportTableTotals';
import { ReportOptions } from './ReportOptions';
import { ReportTable } from './ReportTable';
import { ReportTableHeader } from './ReportTableHeader';
import { ReportTableList } from './ReportTableList';
import { ReportTableTotals } from './ReportTableTotals';
type ChooseGraphProps = {
data: DataEntity;
......
......@@ -6,8 +6,8 @@ import React, {
} from 'react';
import { type RefProp } from 'react-spring';
import { type CSSProperties } from '../../style';
import { View } from '../common/View';
import { type CSSProperties } from '../../../../style';
import { View } from '../../../common/View';
type ReportTableProps = {
saveScrollWidth?: (value: number) => void;
......
import React, { type UIEventHandler } from 'react';
import { type RefProp } from 'react-spring';
import { styles, theme } from '../../style';
import { View } from '../common/View';
import { Row, Cell } from '../table';
import { type MonthData } from './entities';
import { styles, theme } from '../../../../style';
import { View } from '../../../common/View';
import { Row, Cell } from '../../../table';
import { type MonthData } from '../../entities';
type ReportTableHeaderProps = {
scrollWidth?: number;
......
......@@ -6,9 +6,9 @@ import {
integerToCurrency,
} from 'loot-core/src/shared/util';
import { type CSSProperties, styles, theme } from '../../style';
import { View } from '../common/View';
import { Row, Cell } from '../table';
import { type CSSProperties, styles, theme } from '../../../../style';
import { View } from '../../../common/View';
import { Row, Cell } from '../../../table';
type TableRowProps = {
item: {
......
......@@ -7,11 +7,10 @@ import {
integerToCurrency,
} from 'loot-core/src/shared/util';
import { styles, theme } from '../../style';
import { View } from '../common/View';
import { Row, Cell } from '../table';
import { type DataEntity } from './entities';
import { styles, theme } from '../../../../style';
import { View } from '../../../common/View';
import { Row, Cell } from '../../../table';
import { type DataEntity } from '../../entities';
type ReportTableTotalsProps = {
data: DataEntity;
......
---
category: Maintenance
authors: [carkom]
---
Reorganize tableGraph files for custom reports.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment