@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
23 lines (22 loc) • 643 B
TypeScript
import { VNode } from "../../stencil-public-runtime";
import { Position, Scale } from "../interfaces";
/**
* @slot action-bar - A slot for adding a `calcite-action-bar` to the panel.
* @slot - A slot for adding content to the shell panel.
*/
export declare class CalciteShellCenterRow {
/**
* This property makes the content area appear like a "floating" panel.
*/
detached: boolean;
/**
* Specifies the maxiumum height of the row.
*/
heightScale: Scale;
/**
* Arranges the component depending on the elements 'dir' property.
*/
position: Position;
el: HTMLCalciteShellCenterRowElement;
render(): VNode;
}