UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

31 lines (29 loc) 1.01 kB
/// <reference types="../../index.d.ts" /> import { PublicLitElement as LitElement, JsxNode, TargetedEvent } from '@arcgis/lumina'; import { Position, Scale } from '../interfaces'; import { ActionBar } from '../calcite-action-bar/customElement.js'; /** * @deprecated Use the `calcite-shell-panel` component instead. * @slot - A slot for adding content to the `calcite-shell-panel`. * @slot [action-bar] - A slot for adding a `calcite-action-bar` to the `calcite-shell-panel`. */ export declare class ShellCenterRow extends LitElement { /** * When `true`, the content area displays like a floating panel. * * @default false */ detached: boolean; /** * Specifies the maximum height of the component. * * @default "s" */ heightScale: Scale; /** * Specifies the component's position. Will be flipped when the element direction is right-to-left (`"rtl"`). * * @default "end" */ position: Extract<"start" | "end", Position>; }