/*! * devextreme-angular * Version: 25.2.6 * Build date: Mon Mar 30 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/DevExtreme */ import { TransferState, ElementRef, NgZone, OnDestroy, EventEmitter } from '@angular/core'; import { ScrollDirection } from 'devextreme/common'; import { DisposingEvent, InitializedEvent, OptionChangedEvent, PullDownEvent, ReachBottomEvent, ScrollEvent, UpdatedEvent } from 'devextreme/ui/scroll_view'; import DxScrollView from 'devextreme/ui/scroll_view'; import { DxComponent, DxTemplateHost, NestedOptionHost, WatcherHelper } from 'devextreme-angular/core'; import type * as DxScrollViewTypes from "devextreme/ui/scroll_view_types"; import * as i0 from "@angular/core"; import * as i1 from "devextreme-angular/core"; /** * The ScrollView is a UI component that enables a user to scroll its content. */ export declare class DxScrollViewComponent extends DxComponent implements OnDestroy { instance: DxScrollView; /** * A Boolean value specifying whether to enable or disable the bounce-back effect. */ get bounceEnabled(): boolean; set bounceEnabled(value: boolean); /** * A string value specifying the available scrolling directions. */ get direction(): ScrollDirection; set direction(value: ScrollDirection); /** * Specifies whether the UI component responds to user interaction. */ get disabled(): boolean; set disabled(value: boolean); /** * Specifies the global attributes to be attached to the UI component's container element. */ get elementAttr(): Record; set elementAttr(value: Record); /** * Specifies the UI component's height. */ get height(): number | string | undefined; set height(value: number | string | undefined); /** * Specifies the text shown in the pullDown panel when pulling the content down lowers the refresh threshold. */ get pulledDownText(): string; set pulledDownText(value: string); /** * Specifies the text shown in the pullDown panel while pulling the content down to the refresh threshold. */ get pullingDownText(): string; set pullingDownText(value: string); /** * Specifies the text shown in the pullDown panel displayed when content is scrolled to the bottom. */ get reachBottomText(): string; set reachBottomText(value: string); /** * Specifies the text shown in the pullDown panel displayed when the content is being refreshed. */ get refreshingText(): string; set refreshingText(value: string); /** * Switches the UI component to a right-to-left representation. */ get rtlEnabled(): boolean; set rtlEnabled(value: boolean); /** * A Boolean value specifying whether or not an end user can scroll the UI component content swiping it up or down. Applies only if useNative is false */ get scrollByContent(): boolean; set scrollByContent(value: boolean); /** * Specifies whether a user can scroll the content with the scrollbar. Applies only if useNative is false. */ get scrollByThumb(): boolean; set scrollByThumb(value: boolean); /** * Specifies when the UI component shows the scrollbar. */ get showScrollbar(): "onScroll" | "onHover" | "always" | "never"; set showScrollbar(value: "onScroll" | "onHover" | "always" | "never"); /** * Specifies whether the component uses native or simulated scrolling. */ get useNative(): boolean; set useNative(value: boolean); /** * Specifies the UI component's width. */ get width(): number | string | undefined; set width(value: number | string | undefined); /** * A function that is executed before the UI component is disposed of. */ onDisposing: EventEmitter; /** * A function used in JavaScript frameworks to save the UI component instance. */ onInitialized: EventEmitter; /** * A function that is executed after a UI component property is changed. */ onOptionChanged: EventEmitter; /** * A function that is executed when the 'pull to refresh' gesture is performed. Supported on mobile devices only. */ onPullDown: EventEmitter; /** * A function that is executed when the content is scrolled down to the bottom. */ onReachBottom: EventEmitter; /** * A function that is executed on each scroll gesture. */ onScroll: EventEmitter; /** * A function that is executed each time the UI component is updated. */ onUpdated: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ bounceEnabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ directionChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ disabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ elementAttrChange: EventEmitter>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ heightChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ pulledDownTextChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ pullingDownTextChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ reachBottomTextChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ refreshingTextChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ rtlEnabledChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ scrollByContentChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ scrollByThumbChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ showScrollbarChange: EventEmitter<"onScroll" | "onHover" | "always" | "never">; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ useNativeChange: EventEmitter; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ widthChange: EventEmitter; constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, _watcherHelper: WatcherHelper, optionHost: NestedOptionHost, transferState: TransferState, platformId: any); protected _createInstance(element: any, options: any): DxScrollView; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class DxScrollViewModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { DxScrollViewTypes };