@xyo-network/react-chain-blockchain 1.5.36 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.mjs +11 -5
- package/dist/browser/index.mjs.map +1 -1
- package/dist/types/components/block/table/head/TableHead.d.ts.map +1 -1
- package/dist/types/hooks/chain-iterator/useChainIteratorParams.d.ts +1 -10
- package/dist/types/hooks/chain-iterator/useChainIteratorParams.d.ts.map +1 -1
- package/package.json +35 -35
- package/src/components/block/table/head/TableHead.tsx +14 -8
package/dist/browser/index.mjs
CHANGED
|
@@ -1305,13 +1305,13 @@ var ToolTipTableCell = /* @__PURE__ */ __name(({ children, align, title, ...prop
|
|
|
1305
1305
|
return /* @__PURE__ */ React24.createElement(TableCell9, {
|
|
1306
1306
|
title,
|
|
1307
1307
|
...props
|
|
1308
|
-
}, /* @__PURE__ */ React24.createElement(Tooltip7, {
|
|
1309
|
-
title
|
|
1310
1308
|
}, /* @__PURE__ */ React24.createElement(FlexRow5, {
|
|
1311
1309
|
justifyContent: align
|
|
1312
1310
|
}, /* @__PURE__ */ React24.createElement(Typography5, {
|
|
1313
1311
|
variant: "body2"
|
|
1314
|
-
}, children), "\xA0", /* @__PURE__ */ React24.createElement(
|
|
1312
|
+
}, children), "\xA0", /* @__PURE__ */ React24.createElement(Tooltip7, {
|
|
1313
|
+
title
|
|
1314
|
+
}, /* @__PURE__ */ React24.createElement(InfoOutline, {
|
|
1315
1315
|
fontSize: "small"
|
|
1316
1316
|
}))));
|
|
1317
1317
|
}, "ToolTipTableCell");
|
|
@@ -1320,9 +1320,15 @@ var BlockchainTableHead = /* @__PURE__ */ __name(() => {
|
|
|
1320
1320
|
align: "left",
|
|
1321
1321
|
title: "The block number that is included in the block"
|
|
1322
1322
|
}, "Block"), /* @__PURE__ */ React24.createElement(ToolTipTableCell, {
|
|
1323
|
-
title: "The hash of the block"
|
|
1323
|
+
title: "The hash of the block",
|
|
1324
|
+
sx: {
|
|
1325
|
+
width: "20%"
|
|
1326
|
+
}
|
|
1324
1327
|
}, "Hash"), /* @__PURE__ */ React24.createElement(ToolTipTableCell, {
|
|
1325
|
-
title: "The epoch of the block"
|
|
1328
|
+
title: "The epoch of the block",
|
|
1329
|
+
sx: {
|
|
1330
|
+
width: "20%"
|
|
1331
|
+
}
|
|
1326
1332
|
}, "Epoch"), /* @__PURE__ */ React24.createElement(ToolTipTableCell, {
|
|
1327
1333
|
align: "left",
|
|
1328
1334
|
title: "Count of transactions that are included in the block"
|