@portnet/ui 3.1.4 → 3.1.5
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.
|
@@ -439,23 +439,31 @@ const PuiModernTable = _ref => {
|
|
|
439
439
|
}
|
|
440
440
|
},
|
|
441
441
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(DataSection, {
|
|
442
|
-
children: columns.map(column => /*#__PURE__*/(0, _jsxRuntime.
|
|
442
|
+
children: columns.map(column => /*#__PURE__*/(0, _jsxRuntime.jsxs)(DataColumn, {
|
|
443
443
|
style: {
|
|
444
444
|
flex: column.flex || 1
|
|
445
445
|
},
|
|
446
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_material.Typography, {
|
|
446
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_material.Typography, {
|
|
447
447
|
sx: {
|
|
448
448
|
fontSize: '12px',
|
|
449
449
|
fontWeight: 600,
|
|
450
|
-
color:
|
|
450
|
+
color: '#029cfd !important',
|
|
451
451
|
textTransform: 'none',
|
|
452
452
|
letterSpacing: '0.3px',
|
|
453
453
|
'& *': {
|
|
454
|
-
color:
|
|
454
|
+
color: '#029cfd !important'
|
|
455
455
|
}
|
|
456
456
|
},
|
|
457
457
|
children: column.label
|
|
458
|
-
})
|
|
458
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(ColumnValue, {
|
|
459
|
+
sx: {
|
|
460
|
+
fontSize: '0px',
|
|
461
|
+
height: '0px',
|
|
462
|
+
margin: '0px',
|
|
463
|
+
padding: '0px',
|
|
464
|
+
visibility: 'hidden'
|
|
465
|
+
}
|
|
466
|
+
})]
|
|
459
467
|
}, column.key))
|
|
460
468
|
})
|
|
461
469
|
}), data.map((item, index) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(TableCard, {
|