animot-presenter 0.5.16 → 0.5.18
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/README.md +15 -0
- package/dist/AnimotPresenter.svelte +14 -5
- package/dist/cdn/animot-presenter.esm.js +3184 -3184
- package/dist/cdn/animot-presenter.min.js +8 -8
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -494,6 +494,10 @@ export interface AnimotPresenterProps {
|
|
|
494
494
|
duration?: number;
|
|
495
495
|
/** Initial slide index (default: 0) */
|
|
496
496
|
startSlide?: number;
|
|
497
|
+
/** Force-disable narration playback regardless of the project's
|
|
498
|
+
* `settings.narrationEnabled`. Useful for preview surfaces (gallery
|
|
499
|
+
* cards, thumbnails) where audio would be intrusive. Default: false. */
|
|
500
|
+
muteNarration?: boolean;
|
|
497
501
|
/** CSS class for outer container */
|
|
498
502
|
class?: string;
|
|
499
503
|
/** Fired when slide changes */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "animot-presenter",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.18",
|
|
4
4
|
"description": "Embed animated presentations anywhere. Works with vanilla JS, React, Vue, Angular, Svelte, and any frontend framework. Morphing animations, code highlighting, charts, particles, and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"svelte": "./dist/index.js",
|