Skip to content

Commit

Permalink
Merge pull request #205 from HealthEngineAU/fix-table-export
Browse files Browse the repository at this point in the history
fixed broken table export
  • Loading branch information
BobHayden authored Jan 8, 2019
2 parents be7df82 + 4e64d5a commit c98fdc2
Show file tree
Hide file tree
Showing 23 changed files with 13 additions and 16 deletions.
2 changes: 1 addition & 1 deletion min-coverage.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"total":1106,"covered":1054,"skipped":0,"pct":95.3}
{"total":1104,"covered":1052,"skipped":0,"pct":95.29}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "he-react-ui",
"version": "3.0.0",
"version": "3.0.1",
"description": "Common UI elements for HealthEngine",
"main": "dist/index.js",
"scripts": {
Expand Down
3 changes: 0 additions & 3 deletions src/components/Layout/index.tsx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '../../../styles/base';
@import '../../styles/base';

.table {
font-family: $font-stack;
Expand Down Expand Up @@ -153,4 +153,4 @@
margin: 0 20px;
width: 100%;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// Vendor
import classnames from 'classnames';
import React, { Component } from 'react';
import DropDown from '../../Icon/DropDown';
import { LoadingSpinner, LoadingStrip } from '../../Loading';
import DropDown from '../Icon/DropDown';
import { LoadingSpinner, LoadingStrip } from '../Loading';
import style from './Table.scss';

function defaultSort(a: any, b: any) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import Table from '../';
import { ActionIcon, ActionSet } from '../../../Form';
import { ActionIcon, ActionSet } from '../../Form';

const actions = (
<ActionSet>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fixture from '../fixtures/Default.fixture';
import testFixture from '../../../../../config/testFixture';
import testFixture from '../../../../config/testFixture';

testFixture(fixture, 'Default');
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fixture from '../fixtures/Inactive.fixture';
import testFixture from '../../../../../config/testFixture';
import testFixture from '../../../../config/testFixture';

testFixture(fixture, 'Inactive');
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fixture from '../fixtures/LoadingBody.fixture';
import testFixture from '../../../../../config/testFixture';
import testFixture from '../../../../config/testFixture';

testFixture(fixture, 'LoadingBody');
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fixture from '../fixtures/LoadingColumns.fixture';
import testFixture from '../../../../../config/testFixture';
import testFixture from '../../../../config/testFixture';

testFixture(fixture, 'LoadingColumns');
4 changes: 2 additions & 2 deletions src/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import Icon from './Icon';
import Notification from './Notification';
import Popover from './Popover';
import PopUp from './PopUp';
import Table from './Table';

export * from './Form';
export * from './Layout';
export * from './Loading';
export { Icon, Notification, Popover, PopUp };
export { Icon, Notification, Popover, PopUp, Table };

0 comments on commit c98fdc2

Please sign in to comment.