/*! * wavesurfer.js cursor plugin 4.6.0 (2024-02-05) * https://wavesurfer-js.org * @license BSD-3-Clause */ (function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); else if(typeof define === 'function' && define.amd) define("WaveSurfer", [], factory); else if(typeof exports === 'object') exports["WaveSurfer"] = factory(); else root["WaveSurfer"] = root["WaveSurfer"] || {}, root["WaveSurfer"]["cursor"] = factory(); })(this, () => { return /******/ (() => { // webpackBootstrap /******/ "use strict"; /******/ var __webpack_modules__ = ({ /***/ "./src/plugin/cursor/index.js": /*!************************************!*\ !*** ./src/plugin/cursor/index.js ***! \************************************/ /***/ ((module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /** * @typedef {Object} CursorPluginParams * @property {?boolean} deferInit Set to true to stop auto init in `addPlugin()` * @property {boolean} hideOnBlur=true Hide the cursor when the mouse leaves the * waveform * @property {string} width='1px' The width of the cursor * @property {string} color='black' The color of the cursor * @property {string} opacity='0.25' The opacity of the cursor * @property {string} style='solid' The border style of the cursor * @property {number} zIndex=3 The z-index of the cursor element * @property {object} customStyle An object with custom styles which are applied * to the cursor element * @property {boolean} showTime=false Show the time on the cursor. * @property {object} customShowTimeStyle An object with custom styles which are * applied to the cursor time element. * @property {string} followCursorY=false Use `true` to make the time on * the cursor follow the x and the y-position of the mouse. Use `false` to make the * it only follow the x-position of the mouse. * @property {function} formatTimeCallback Formats the timestamp on the cursor. */ /** * Displays a thin line at the position of the cursor on the waveform. * * @implements {PluginClass} * @extends {Observer} * @example * // es6 * import CursorPlugin from 'wavesurfer.cursor.js'; * * // commonjs * var CursorPlugin = require('wavesurfer.cursor.js'); * * // if you are using