@checksub_team/peaks_timeline 2.0.0-alpha.16 → 2.0.0-alpha.17

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": "2.0.0-alpha.16",
3
+ "version": "2.0.0-alpha.17",
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
@@ -15926,7 +15926,8 @@ module.exports = function (Konva, SVGs, Utils) {
15926
15926
  this._indicators[line.id] = {
15927
15927
  lineGroup: lineGroup,
15928
15928
  indicator: indicator,
15929
- type: line.indicatorType
15929
+ type: line.indicatorType,
15930
+ text: line.indicatorText
15930
15931
  };
15931
15932
  }
15932
15933
  };
@@ -219,7 +219,8 @@ define([
219
219
  this._indicators[line.id] = {
220
220
  lineGroup: lineGroup,
221
221
  indicator: indicator,
222
- type: line.indicatorType
222
+ type: line.indicatorType,
223
+ text: line.indicatorText
223
224
  };
224
225
  }
225
226
  };