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.js CHANGED
@@ -8200,14 +8200,16 @@ var OncoKbSummaryTable = /** @class */ (function (_super) {
8200
8200
  Header: 'Level',
8201
8201
  sortable: false,
8202
8202
  Cell: function (props) { return (React__namespace.createElement(React__namespace.Fragment, null, props.original.level.map(function (level) { return (React__namespace.createElement("div", { key: level.level, style: {
8203
+ display: 'flex',
8203
8204
  overflow: 'hidden',
8204
8205
  textOverflow: 'ellipsis',
8205
8206
  } },
8206
8207
  React__namespace.createElement("i", { className: levelIconClassNames(level.level), style: {
8207
8208
  verticalAlign: 'text-bottom',
8208
- display: 'inline-block',
8209
8209
  } }),
8210
- React__namespace.createElement("span", null, ": "),
8210
+ React__namespace.createElement("span", { style: {
8211
+ paddingRight: 3,
8212
+ } }, ":"),
8211
8213
  React__namespace.createElement(cbioportalFrontendCommons.EllipsisTextTooltip, { text: level.tumorTypes.join(', '), style: {
8212
8214
  overflow: 'hidden',
8213
8215
  whiteSpace: 'nowrap',