Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
update to v7.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gwintzer committed Apr 21, 2020
1 parent 4038915 commit afec648
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 3,898 deletions.
34 changes: 10 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,22 @@
{
"name": "kibana-xlsx-import",
"version": "7.4.0-2",
"description": "Import XLSX to JSON",
"main": "index.js",
"version": "7.6.1-1",
"description": "Import XLSX/CSV to Elasticsearch indices",
"kibana": {
"version": "kibana"
"version": "kibana",
"templateVersion": "1.0.0"
},
"scripts": {
"preinstall": "node ../../preinstall_check",
"kbn": "node ../../scripts/kbn",
"lint": "eslint **/*.js",
"start": "plugin-helpers start",
"test:server": "plugin-helpers test:server",
"test:browser": "plugin-helpers test:browser",
"build": "plugin-helpers build"
},
"devDependencies": {
"@elastic/eslint-config-kibana": "link:../../packages/eslint-config-kibana",
"@elastic/eslint-import-resolver-kibana": "^0.9.0",
"@kbn/plugin-helpers": "link:../../packages/kbn-plugin-helpers",
"babel-eslint": "^8.0.2",
"eslint": "^4.11.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.0.1",
"expect.js": "^0.3.1"
"es": "node ../../scripts/es",
"lint": "../../node_modules/.bin/eslint .",
"start": "../../node_modules/.bin/plugin-helpers start --oss --no-watch",
"test:server": "../../node_modules/.bin/plugin-helpers test:server",
"test:browser": "../../node_modules/.bin/plugin-helpers test:browser",
"build": "../../node_modules/.bin/plugin-helpers build"
},
"dependencies": {
"@elastic/eui": "13.6.1",
"axios": "^0.19.0",
"react-dom": "^16.8.0",
"short-uuid": "^3.1.1",
Expand Down
2 changes: 2 additions & 0 deletions public/components/previewTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ const PreviewTable = (props) => {
<EuiBasicTable
items={props.items}
columns={props.columns}
tableLayout="auto"
isExpandable={true}
/>
);
};
Expand Down
6 changes: 5 additions & 1 deletion public/components/stepOne.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,11 @@ class StepOne extends Component {

<EuiSpacer size="l" />

{previewTable}
<EuiFlexGroup gutterSize="l">
<EuiFlexItem grow={false}>
{previewTable}
</EuiFlexItem>
</EuiFlexGroup>

</Fragment>
);
Expand Down
Loading

0 comments on commit afec648

Please sign in to comment.