@waveform-playlist/browser 5.0.0-alpha.2 → 5.0.0-alpha.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +8 -8
package/dist/index.d.ts CHANGED
@@ -65,7 +65,7 @@ declare interface AnnotationData {
65
65
  * to avoid floating-point precision errors. Convert to seconds only when
66
66
  * needed for playback using: seconds = samples / sampleRate
67
67
  */
68
- declare interface AudioClip {
68
+ export declare interface AudioClip {
69
69
  /** Unique identifier for this clip */
70
70
  id: string;
71
71
  /** The audio buffer containing the audio data */
@@ -152,7 +152,7 @@ declare interface ClipPeaks {
152
152
  /**
153
153
  * Represents a track containing multiple audio clips
154
154
  */
155
- declare interface ClipTrack {
155
+ export declare interface ClipTrack {
156
156
  /** Unique identifier for this track */
157
157
  id: string;
158
158
  /** Display name for this track */
@@ -328,7 +328,7 @@ export declare interface ExportWavButtonProps {
328
328
  /**
329
329
  * Simple fade configuration
330
330
  */
331
- declare interface Fade {
331
+ export declare interface Fade {
332
332
  /** Duration of the fade in seconds */
333
333
  duration: number;
334
334
  /** Type of fade curve (default: 'linear') */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waveform-playlist/browser",
3
- "version": "5.0.0-alpha.2",
3
+ "version": "5.0.0-alpha.3",
4
4
  "description": "Browser bundle for waveform-playlist with React",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -56,13 +56,13 @@
56
56
  "tone": "15.1.22",
57
57
  "uuid": "^13.0.0",
58
58
  "waveform-data": "^4.5.2",
59
- "@waveform-playlist/annotations": "5.0.0-alpha.2",
60
- "@waveform-playlist/loaders": "5.0.0-alpha.2",
61
- "@waveform-playlist/playout": "5.0.0-alpha.2",
62
- "@waveform-playlist/core": "5.0.0-alpha.2",
63
- "@waveform-playlist/ui-components": "5.0.0-alpha.2",
64
- "@waveform-playlist/webaudio-peaks": "5.0.0-alpha.2",
65
- "@waveform-playlist/recording": "5.0.0-alpha.2"
59
+ "@waveform-playlist/annotations": "5.0.0-alpha.3",
60
+ "@waveform-playlist/core": "5.0.0-alpha.3",
61
+ "@waveform-playlist/playout": "5.0.0-alpha.3",
62
+ "@waveform-playlist/loaders": "5.0.0-alpha.3",
63
+ "@waveform-playlist/ui-components": "5.0.0-alpha.3",
64
+ "@waveform-playlist/webaudio-peaks": "5.0.0-alpha.3",
65
+ "@waveform-playlist/recording": "5.0.0-alpha.3"
66
66
  },
67
67
  "scripts": {
68
68
  "build": "pnpm typecheck && vite build",