Skip to content

Commit bbf1e71

Browse files
authored
chore: Export Placeholder Loadings (#235)
1 parent f94a6ff commit bbf1e71

File tree

7 files changed

+31
-1
lines changed

7 files changed

+31
-1
lines changed

packages/charts/src/index.ts

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,22 @@ import { MicroBarChart } from './lib/MicroBarChart';
77
import { PieChart } from './lib/PieChart';
88
import { RadarChart } from './lib/RadarChart';
99
import { RadialChart } from './lib/RadialChart';
10+
import { BarChartPlaceholder } from './lib/BarChartPlaceholder';
11+
import { ColumnChartPlaceholder } from './lib/ColumnChartPlaceholder';
12+
import { LineChartPlaceholder } from './lib/LineChartPlaceholder';
13+
import { PieChartPlaceholder } from './lib/PieChartPlaceholder';
1014

11-
export { ColumnChart, DonutChart, BarChart, LineChart, PieChart, RadarChart, RadialChart, MicroBarChart };
15+
export {
16+
ColumnChart,
17+
DonutChart,
18+
BarChart,
19+
LineChart,
20+
PieChart,
21+
RadarChart,
22+
RadialChart,
23+
MicroBarChart,
24+
BarChartPlaceholder,
25+
ColumnChartPlaceholder,
26+
LineChartPlaceholder,
27+
PieChartPlaceholder
28+
};
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import { BarChartPlaceholder } from '../components/BarChart/Placeholder';
2+
export { BarChartPlaceholder };
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import { ColumnChartPlaceholder } from '../components/ColumnChart/Placeholder';
2+
export { ColumnChartPlaceholder };
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import { LineChartPlaceholder } from '../components/LineChart/Placeholder';
2+
export { LineChartPlaceholder };
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import { PieChartPlaceholder } from '../components/PieChart/Placeholder';
2+
export { PieChartPlaceholder };

packages/main/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ import { TabSeparator } from './lib/TabSeparator';
9797
import { Table } from './lib/Table';
9898
import { TableCell } from './lib/TableCell';
9999
import { TableColumn } from './lib/TableColumn';
100+
import { TablePlaceholder } from './lib/TablePlaceholder';
100101
import { TableRow } from './lib/TableRow';
101102
import { Text } from './lib/Text';
102103
import { TextAlign } from './lib/TextAlign';
@@ -210,6 +211,7 @@ export {
210211
Table,
211212
TableCell,
212213
TableColumn,
214+
TablePlaceholder,
213215
TableRow,
214216
Text,
215217
TextAlign,
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { TablePlaceholder } from '../components/AnalyticalTable/defaults/LoadingComponent/TablePlaceholder';
2+
3+
export { TablePlaceholder };

0 commit comments

Comments
 (0)