/** * DevExtreme (ui/load_panel.d.ts) * Version: 25.1.7 * Build date: Mon Nov 10 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import { UserDefinedElement, } from '../core/element'; import { Cancelable, EventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../events'; import { AnimationConfig, PositionConfig, } from '../common/core/animation'; import dxOverlay, { dxOverlayAnimation, dxOverlayOptions, } from './overlay'; import { PositionAlignment, } from '../common'; /** * The type of the contentReady event handler's argument. */ export type ContentReadyEvent = EventInfo; /** * The type of the disposing event handler's argument. */ export type DisposingEvent = EventInfo; /** * The type of the hiding event handler's argument. */ export type HidingEvent = Cancelable & EventInfo; /** * The type of the hidden event handler's argument. */ export type HiddenEvent = EventInfo; /** * The type of the initialized event handler's argument. */ export type InitializedEvent = InitializedEventInfo; /** * The type of the optionChanged event handler's argument. */ export type OptionChangedEvent = EventInfo & ChangedOptionInfo; /** * The type of the showing event handler's argument. */ export type ShowingEvent = Cancelable & EventInfo; /** * The type of the shown event handler's argument. */ export type ShownEvent = EventInfo; /** * * @deprecated * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface dxLoadPanelOptions extends dxOverlayOptions { /** * Configures UI component visibility animations. This object contains two fields: show and hide. */ animation?: dxLoadPanelAnimation; /** * Specifies the UI component's container. */ container?: string | UserDefinedElement | undefined; /** * The delay in milliseconds after which the load panel is displayed. */ delay?: number; /** * Specifies whether or not the UI component can be focused. */ focusStateEnabled?: boolean; /** * Specifies the UI component's height. */ height?: number | string; /** * A URL pointing to an image to be used as a load indicator. */ indicatorSrc?: string; /** * Specifies the maximum height the UI component can reach while resizing. */ maxHeight?: number | string; /** * Specifies the maximum width the UI component can reach while resizing. */ maxWidth?: number | string; /** * Specifies the text displayed in the load panel. Ignored in the Material Design theme. */ message?: string; /** * Positions the UI component. */ position?: PositionAlignment | PositionConfig | Function; /** * Specifies the shading color. Applies only if shading is enabled. */ shadingColor?: string; /** * A Boolean value specifying whether or not to show a load indicator. */ showIndicator?: boolean; /** * A Boolean value specifying whether or not to show the pane behind the load indicator. */ showPane?: boolean; /** * Specifies the UI component's width. */ width?: number | string; } /** * Configures UI component visibility animations. This object contains two fields: show and hide. * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface dxLoadPanelAnimation extends dxOverlayAnimation { /** * An object that defines the animation properties used when the UI component is being hidden. */ hide?: AnimationConfig; /** * An object that defines the animation properties used when the UI component is being shown. */ show?: AnimationConfig; } /** * The LoadPanel is an overlay UI component notifying the viewer that loading is in progress. */ export default class dxLoadPanel extends dxOverlay { } export type Properties = dxLoadPanelOptions; /** * @deprecated use Properties instead * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export type Options = dxLoadPanelOptions;