labsense-ui-kit 1.2.81 → 1.2.83
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/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9684,7 +9684,9 @@ var TableRow = function TableRow(_ref) {
|
|
|
9684
9684
|
subtextweight: cellData.subtextweight,
|
|
9685
9685
|
alignment: cellData.alignment,
|
|
9686
9686
|
CustomFunction: cellData.CustomFunction,
|
|
9687
|
-
minHeight: '30px'
|
|
9687
|
+
minHeight: '30px',
|
|
9688
|
+
minWidth: cellData.minWidth,
|
|
9689
|
+
maxWidth: cellData.maxWidth
|
|
9688
9690
|
});
|
|
9689
9691
|
}));
|
|
9690
9692
|
}));
|
|
@@ -9704,8 +9706,8 @@ var TableHeader = styled__default.div(_templateObject2$l || (_templateObject2$l
|
|
|
9704
9706
|
theme = _ref3.theme;
|
|
9705
9707
|
return $tcolor || theme.vms.text.white;
|
|
9706
9708
|
});
|
|
9707
|
-
var TableContent = styled__default.div(_templateObject3$e || (_templateObject3$e = _taggedTemplateLiteralLoose(["\n width: 100%;\n svg {\n cursor: pointer;\n }\n"])));
|
|
9708
|
-
var TableData = styled__default.div(_templateObject4$b || (_templateObject4$b = _taggedTemplateLiteralLoose(["\n overflow: auto;\n scrollbar-width: thin;\n height: 100%;\n max-height: ", ";\n"])), function (_ref4) {
|
|
9709
|
+
var TableContent = styled__default.div(_templateObject3$e || (_templateObject3$e = _taggedTemplateLiteralLoose(["\n width: 100%;\n overflow-x: auto;\n scrollbar-width: thin;\n svg {\n cursor: pointer;\n }\n"])));
|
|
9710
|
+
var TableData = styled__default.div(_templateObject4$b || (_templateObject4$b = _taggedTemplateLiteralLoose(["\n overflow-y: auto;\n scrollbar-width: thin;\n height: 100%;\n max-height: ", ";\n"])), function (_ref4) {
|
|
9709
9711
|
var $isLegends = _ref4.$isLegends;
|
|
9710
9712
|
return $isLegends ? 'calc(100% - 56px)' : 'calc(100% - 36px)';
|
|
9711
9713
|
});
|