WIP Table Sumary

This commit is contained in:
Patrick Fic
2020-10-23 14:12:35 -07:00
parent 6929da6679
commit 7924b4207d
4 changed files with 4135 additions and 3620 deletions

View File

@@ -5,7 +5,7 @@ const Nucleus = require("nucleus-nodejs");
const { default: ipcTypes } = require("../src/ipc.types");
Nucleus.init("5f91b569b95bac34eefdb63a", {
disableInDev: false,
disableInDev: true,
debug: false,
});

7742
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -25,7 +25,6 @@
"lodash": "^4.17.20",
"logrocket": "^1.0.14",
"moment": "^2.29.1",
"node-notifier": "^8.0.0",
"node-sass": "^4.14.1",
"nucleus-nodejs": "^3.0.6",
"query-string": "^6.13.6",
@@ -34,7 +33,7 @@
"react-infinite-scroller": "^1.2.4",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-scripts": "^4.0.0",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",

View File

@@ -154,6 +154,14 @@ export default function JobLinesTableMolecule({ loading, job }) {
x: true,
y: "20rem",
}}
summary={() => (
<Table.Summary.Row>
<Table.Summary.Cell index={0}>Summary</Table.Summary.Cell>
<Table.Summary.Cell index={1}>
This is a summary content
</Table.Summary.Cell>
</Table.Summary.Row>
)}
/>
</div>
);