devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
81 lines (68 loc) • 2.96 kB
TypeScript
/**
* DevExtreme (ui/defer_rendering.d.ts)
* Version: 21.2.4
* Build date: Mon Dec 06 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import {
AnimationConfig,
} from '../animation/fx';
import {
DxElement,
} from '../core/element';
import {
EventInfo,
InitializedEventInfo,
ChangedOptionInfo,
} from '../events/index';
import Widget, {
WidgetOptions,
} from './widget/ui.widget';
export type ContentReadyEvent = EventInfo<dxDeferRendering>;
export type DisposingEvent = EventInfo<dxDeferRendering>;
export type InitializedEvent = InitializedEventInfo<dxDeferRendering>;
export type OptionChangedEvent = EventInfo<dxDeferRendering> & ChangedOptionInfo;
export type RenderedEvent = EventInfo<dxDeferRendering>;
export type ShownEvent = EventInfo<dxDeferRendering>;
/**
* @deprecated use Properties instead
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please describe your scenario in the following GitHub Issue, and we will suggest a public alternative: {@link https://github.com/DevExpress/DevExtreme/issues/17885|Internal Types}.
*/
export interface dxDeferRenderingOptions extends WidgetOptions<dxDeferRendering> {
/**
* Specifies the animation to be used to show the rendered content.
*/
animation?: AnimationConfig;
/**
* A function that is executed when the content is rendered but not yet displayed.
*/
onRendered?: ((e: { component?: dxDeferRendering; element?: DxElement; model?: any }) => void);
/**
* A function that is executed when the content is displayed and animation is completed.
*/
onShown?: ((e: { component?: dxDeferRendering; element?: DxElement; model?: any }) => void);
/**
* Specifies when the UI component content is rendered.
*/
renderWhen?: PromiseLike<void> | boolean;
/**
* Indicates if a load indicator should be shown until the UI component's content is rendered.
*/
showLoadIndicator?: boolean;
/**
* Specifies a jQuery selector of items that should be rendered using a staggered animation.
*/
staggerItemSelector?: string;
}
/**
* The DeferRendering is a UI component that waits for its content to be ready before rendering it. While the content is getting ready, the DeferRendering displays a loading indicator.
*/
export default class dxDeferRendering extends Widget<dxDeferRenderingOptions> { }
export type Properties = dxDeferRenderingOptions;
/**
* @deprecated use Properties instead
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please describe your scenario in the following GitHub Issue, and we will suggest a public alternative: {@link https://github.com/DevExpress/DevExtreme/issues/17885|Internal Types}.
*/
export type Options = dxDeferRenderingOptions;