Archived
Template
1
Fork 0
This repository has been archived on 2024-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
Contour/public/@shoelace-style/shoelace/cdn/components/animated-image/animated-image.component.d.ts
2024-01-30 10:59:28 -05:00

43 lines
1.6 KiB
TypeScript

import ShoelaceElement from '../../internal/shoelace-element.js';
import SlIcon from '../icon/icon.component.js';
import type { CSSResultGroup } from 'lit';
/**
* @summary A component for displaying animated GIFs and WEBPs that play and pause on interaction.
* @documentation https://shoelace.style/components/animated-image
* @status stable
* @since 2.0
*
* @dependency sl-icon
*
* @event sl-load - Emitted when the image loads successfully.
* @event sl-error - Emitted when the image fails to load.
*
* @slot play-icon - Optional play icon to use instead of the default. Works best with `<sl-icon>`.
* @slot pause-icon - Optional pause icon to use instead of the default. Works best with `<sl-icon>`.
*
* @part - control-box - The container that surrounds the pause/play icons and provides their background.
*
* @cssproperty --control-box-size - The size of the icon box.
* @cssproperty --icon-size - The size of the play/pause icons.
*/
export default class SlAnimatedImage extends ShoelaceElement {
static styles: CSSResultGroup;
static dependencies: {
'sl-icon': typeof SlIcon;
};
animatedImage: HTMLImageElement;
frozenFrame: string;
isLoaded: boolean;
/** The path to the image to load. */
src: string;
/** A description of the image used by assistive devices. */
alt: string;
/** Plays the animation. When this attribute is remove, the animation will pause. */
play: boolean;
private handleClick;
private handleLoad;
private handleError;
handlePlayChange(): void;
handleSrcChange(): void;
render(): import("lit-html").TemplateResult<1>;
}