@ghchinoy/lit-audio-ui 0.4.18 → 0.4.20
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/AGENT_SKILL.md +4 -0
- package/custom-elements.json +1581 -1484
- package/dist/components/atoms/ui-audio-play-button.js +2 -6
- package/dist/components/atoms/ui-audio-progress-slider.js +74 -16
- package/dist/components/atoms/ui-audio-time-display.js +13 -10
- package/dist/components/molecules/ui-live-waveform.js +23 -19
- package/dist/components/molecules/ui-spectrum-visualizer.js +23 -19
- package/dist/components/organisms/ui-audio-player.js +11 -7
- package/dist/components/providers/ui-audio-provider.js +19 -11
- package/dist/components/providers/ui-speech-provider.js +16 -12
- package/dist/index.js +35 -35
- package/dist/scream-audio-ui.umd.js +79 -31
- package/dist/src/components/atoms/ui-audio-progress-slider.d.ts +6 -0
- package/dist/src/components/molecules/ui-live-waveform.d.ts +1 -1
- package/dist/src/components/molecules/ui-scrolling-waveform.d.ts +1 -1
- package/dist/src/components/molecules/ui-spectrum-visualizer.d.ts +1 -1
- package/dist/src/components/molecules/ui-waveform.d.ts +1 -1
- package/dist/src/components/providers/ui-audio-provider.d.ts +2 -1
- package/dist/src/utils/audio-context.d.ts +1 -0
- package/dist/src/utils/audio-utils.d.ts +6 -0
- package/dist/standalone/scream-audio-ui.standalone.js +1602 -1492
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/audio-utils.js +26 -1
- package/package.json +1 -1
package/AGENT_SKILL.md
CHANGED
|
@@ -83,3 +83,7 @@ Do not forget to inject the Material Symbols font into the host document's `<hea
|
|
|
83
83
|
- **Transparent Progress Overlays:** The `<ui-audio-progress-slider>` exposes its internal Material slider via `part="slider"`. This allows you to create "Producer Bar" layouts by setting `--md-slider-inactive-track-color: transparent` and layering it directly over a `<ui-waveform>`.
|
|
84
84
|
- **Waveform Alignment:** Use `align="bottom"` on static or scrolling waveforms to draw bars upwards from the bottom of the container, rather than the default vertically-centered mirrored style.
|
|
85
85
|
|
|
86
|
+
|
|
87
|
+
### 11. Interactive UX (v0.4.19+)
|
|
88
|
+
- **Hover Timestamps:** To give users precision seeking capabilities, add `hoverTimestamp="true"` to `<ui-audio-progress-slider>`. This will automatically render a floating `MM:SS` tooltip above the cursor based on the context's total duration.
|
|
89
|
+
|