@checksub_team/peaks_timeline 1.4.33 → 1.4.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checksub_team/peaks_timeline",
3
- "version": "1.4.33",
3
+ "version": "1.4.34",
4
4
  "description": "JavaScript UI component for displaying audio waveforms",
5
5
  "main": "./peaks.js",
6
6
  "types": "./peaks.js.d.ts",
package/peaks.js CHANGED
@@ -16729,6 +16729,7 @@ module.exports = function (Utils) {
16729
16729
  color: this.color,
16730
16730
  textColor: this.textColor,
16731
16731
  handleTextColor: this.handleTextColor,
16732
+ hoverColor: this.hoverColor,
16732
16733
  opacity: this.opacity,
16733
16734
  editable: this.editable,
16734
16735
  allowDeletion: this.allowDeletion,
package/src/segment.js CHANGED
@@ -219,6 +219,7 @@ define([
219
219
  color: this.color,
220
220
  textColor: this.textColor,
221
221
  handleTextColor: this.handleTextColor,
222
+ hoverColor: this.hoverColor,
222
223
  opacity: this.opacity,
223
224
  editable: this.editable,
224
225
  allowDeletion: this.allowDeletion,
@@ -235,7 +236,7 @@ define([
235
236
  this._color = opts.color;
236
237
  this._textColor = opts.textColor;
237
238
  this._handleTextColor = opts.handleTextColor;
238
- this._hoverColor = opts.hoverColor ;
239
+ this._hoverColor = opts.hoverColor;
239
240
  this._opacity = opts.opacity;
240
241
  this._editable = opts.editable;
241
242
  this._allowDeletion = opts.allowDeletion;