@waveform-playlist/browser 15.1.0 → 15.2.0

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.mjs CHANGED
@@ -1793,6 +1793,7 @@ var WaveformPlaylistProvider = ({
1793
1793
  onAnnotationsChange,
1794
1794
  barWidth = 1,
1795
1795
  barGap = 0,
1796
+ roundedBars = false,
1796
1797
  progressBarWidth: progressBarWidthProp,
1797
1798
  onTracksChange,
1798
1799
  soundFontCache,
@@ -2832,6 +2833,7 @@ var WaveformPlaylistProvider = ({
2832
2833
  canZoomOut: zoom.canZoomOut,
2833
2834
  barWidth,
2834
2835
  barGap,
2836
+ roundedBars,
2835
2837
  progressBarWidth,
2836
2838
  isReady,
2837
2839
  mono,
@@ -2857,6 +2859,7 @@ var WaveformPlaylistProvider = ({
2857
2859
  zoom.canZoomOut,
2858
2860
  barWidth,
2859
2861
  barGap,
2862
+ roundedBars,
2860
2863
  progressBarWidth,
2861
2864
  isReady,
2862
2865
  mono,
@@ -2952,6 +2955,7 @@ var MediaElementPlaylistProvider = ({
2952
2955
  annotationList,
2953
2956
  barWidth = 1,
2954
2957
  barGap = 0,
2958
+ roundedBars = false,
2955
2959
  progressBarWidth: progressBarWidthProp,
2956
2960
  audioContext,
2957
2961
  onAnnotationsChange,
@@ -3274,6 +3278,7 @@ var MediaElementPlaylistProvider = ({
3274
3278
  controls,
3275
3279
  barWidth,
3276
3280
  barGap,
3281
+ roundedBars,
3277
3282
  progressBarWidth,
3278
3283
  fadeIn: track.fadeIn,
3279
3284
  fadeOut: track.fadeOut
@@ -3288,6 +3293,7 @@ var MediaElementPlaylistProvider = ({
3288
3293
  controls,
3289
3294
  barWidth,
3290
3295
  barGap,
3296
+ roundedBars,
3291
3297
  progressBarWidth,
3292
3298
  track.fadeIn,
3293
3299
  track.fadeOut
@@ -4021,6 +4027,7 @@ var PlaylistVisualization = ({
4021
4027
  controls,
4022
4028
  barWidth,
4023
4029
  barGap,
4030
+ roundedBars,
4024
4031
  isReady,
4025
4032
  mono
4026
4033
  } = usePlaylistData();
@@ -4279,7 +4286,8 @@ var PlaylistVisualization = ({
4279
4286
  duration: displayDuration * 1e3,
4280
4287
  controls,
4281
4288
  barWidth,
4282
- barGap
4289
+ barGap,
4290
+ roundedBars
4283
4291
  },
4284
4292
  children: /* @__PURE__ */ jsx9(
4285
4293
  Playlist,
@@ -4913,6 +4921,7 @@ var MediaElementPlaylist = ({
4913
4921
  playoutRef,
4914
4922
  barWidth,
4915
4923
  barGap,
4924
+ roundedBars,
4916
4925
  fadeIn,
4917
4926
  fadeOut
4918
4927
  } = useMediaElementData();
@@ -5024,7 +5033,8 @@ var MediaElementPlaylist = ({
5024
5033
  duration: duration * 1e3,
5025
5034
  controls,
5026
5035
  barWidth,
5027
- barGap
5036
+ barGap,
5037
+ roundedBars
5028
5038
  },
5029
5039
  children: /* @__PURE__ */ jsx14(
5030
5040
  Playlist2,