UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

17 lines (16 loc) 567 B
/// <reference path="../../index.d.ts" /> import type { PublicLitElement as LitElement } from "@arcgis/lumina"; /** * @cssproperty [--calcite-scrim-background] - Specifies the component's background color. * @slot - A slot for adding custom content, primarily loading information. */ export abstract class Scrim extends LitElement { /** * When `true`, a busy indicator is displayed. * * @default false */ accessor loading: boolean; /** Overrides individual strings used by the component. */ accessor messageOverrides: { loading?: string; }; }