UNPKG

@sandlada/mdc

Version:

@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.

21 lines 641 B
/** * @license * Copyright 2026 Kai-Orion & Sandlada * SPDX-License-Identifier: MIT */ import type { LitElement } from 'lit'; import type { IAttachable } from '../../utils'; export interface IRipple extends LitElement, IAttachable { hovered: boolean; focused: boolean; pressed: boolean; disabled: boolean; ignoreGlobalConfig: boolean; disableHoverStateLayer: boolean; disableFocusStateLayer: boolean; disablePressStateLayer: boolean; hoverStateLayerElement: HTMLElement; focusStateLayerElement: HTMLElement; pressStateLayerElement: HTMLElement; } //# sourceMappingURL=ripple.interface.d.ts.map