react-mutation-mapper 0.8.59 → 0.8.60

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
@@ -10176,6 +10176,9 @@ var AxisScaleSwitch = /** @class */ (function (_super) {
10176
10176
  fontWeight: this.props.selectedScale === scale
10177
10177
  ? 'bolder'
10178
10178
  : 'normal',
10179
+ color: this.props.selectedScale === scale ? '#fff' : '#6c757d',
10180
+ backgroundColor: this.props.selectedScale === scale ? '#6c757d' : '#fff',
10181
+ borderColor: '#6c757d',
10179
10182
  }, onClick: onClick }, scale));
10180
10183
  }
10181
10184
  });