@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
19 lines (17 loc) • 821 B
TypeScript
/// <reference types="../../index.d.ts" />
import { PublicLitElement as LitElement, JsxNode, TargetedEvent } from '@arcgis/lumina';
/**
* @slot - A slot for adding content.
* @slot [actions-start] - A slot for adding actionable `calcite-action` elements before the content of the component.
* @slot [content-start] - A slot for adding non-actionable elements before content of the component.
* @slot [content-end] - A slot for adding non-actionable elements after content of the component.
* @slot [actions-end] - A slot for adding actionable `calcite-action` elements after the content of the component.
*/
export declare class Stack extends LitElement {
/**
* When `true`, content interaction is prevented and displayed with lower opacity.
*
* @default false
*/
disabled: boolean;
}