react-mutation-mapper 0.8.44 → 0.8.45

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.es.js CHANGED
@@ -8165,14 +8165,16 @@ var OncoKbSummaryTable = /** @class */ (function (_super) {
8165
8165
  Header: 'Level',
8166
8166
  sortable: false,
8167
8167
  Cell: function (props) { return (React.createElement(React.Fragment, null, props.original.level.map(function (level) { return (React.createElement("div", { key: level.level, style: {
8168
+ display: 'flex',
8168
8169
  overflow: 'hidden',
8169
8170
  textOverflow: 'ellipsis',
8170
8171
  } },
8171
8172
  React.createElement("i", { className: levelIconClassNames(level.level), style: {
8172
8173
  verticalAlign: 'text-bottom',
8173
- display: 'inline-block',
8174
8174
  } }),
8175
- React.createElement("span", null, ": "),
8175
+ React.createElement("span", { style: {
8176
+ paddingRight: 3,
8177
+ } }, ":"),
8176
8178
  React.createElement(EllipsisTextTooltip, { text: level.tumorTypes.join(', '), style: {
8177
8179
  overflow: 'hidden',
8178
8180
  whiteSpace: 'nowrap',