@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
26 lines (24 loc) • 820 B
TypeScript
/// <reference types="../../index.d.ts" />
import { PublicLitElement as LitElement, JsxNode, TargetedEvent } from '@arcgis/lumina';
import { InteractiveComponent } from '../../utils/interactive';
import { TileSelectGroupLayout } from './interfaces';
/**
* @deprecated Use the `calcite-tile-group` component instead.
* @slot - A slot for adding `calcite-tile-select` elements.
*/
export declare class TileSelectGroup extends LitElement {
/**
* When `true`, interaction is prevented and the component is displayed with lower opacity.
*
* @default false
*/
disabled: boolean;
/**
* Defines the layout of the component.
*
* Use `"horizontal"` for rows, and `"vertical"` for a single column.
*
* @default "horizontal"
*/
layout: TileSelectGroupLayout;
}