@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
16 lines • 636 B
TypeScript
/**
* @license
* Copyright 2026 Kai-Orion & Sandlada
* SPDX-License-Identifier: MIT
*/
import { type LitElement, type TemplateResult } from 'lit';
import type { MixinBase, MixinReturn } from '../../utils/behaviors/mixin';
export interface IMixinElevationAttributes {
ignoreGlobalConfig: boolean;
disableElevation: boolean;
}
export interface IMixinElevationOptions extends IMixinElevationAttributes {
renderElevation(): TemplateResult;
}
export declare function mixinElevationOptions<T extends MixinBase<LitElement>>(base: T): MixinReturn<T, IMixinElevationOptions>;
//# sourceMappingURL=elevation-options.mixin.d.ts.map