devextreme-angular
Version:
Angular UI and visualization components based on DevExtreme widgets
264 lines (255 loc) • 13 kB
TypeScript
/*!
* devextreme-angular
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 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-angular
*/
import { OnInit, OnDestroy, EventEmitter, QueryList } from '@angular/core';
import dxOverlay from 'devextreme/ui/overlay';
import DOMComponent from 'devextreme/core/dom_component';
import dxPopup from 'devextreme/ui/popup';
import { AnimationConfig, PositionConfig } from 'devextreme/common/core/animation';
import { event } from 'devextreme/events/events.types';
import { EventInfo } from 'devextreme/common/core/events';
import { Component as CoreComponent } from 'devextreme/core/component';
import { PositionAlignment } from 'devextreme/common';
import { dxPopupToolbarItem } from 'devextreme/ui/popup';
import { NestedOptionHost } from 'devextreme-angular/core';
import { NestedOption } from 'devextreme-angular/core';
import { DxiDateBoxToolbarItemComponent } from './toolbar-item-dxi';
import * as i0 from "@angular/core";
export declare class DxoDateBoxDropDownOptionsComponent extends NestedOption implements OnDestroy, OnInit {
get accessKey(): string | undefined;
set accessKey(value: string | undefined);
get animation(): {
hide?: AnimationConfig;
show?: AnimationConfig;
};
set animation(value: {
hide?: AnimationConfig;
show?: AnimationConfig;
});
get closeOnOutsideClick(): boolean | ((event: event) => boolean);
set closeOnOutsideClick(value: boolean | ((event: event) => boolean));
get container(): any | string | undefined;
set container(value: any | string | undefined);
get contentTemplate(): any;
set contentTemplate(value: any);
get deferRendering(): boolean;
set deferRendering(value: boolean);
get disabled(): boolean;
set disabled(value: boolean);
get dragAndResizeArea(): any | string | undefined;
set dragAndResizeArea(value: any | string | undefined);
get dragEnabled(): boolean;
set dragEnabled(value: boolean);
get dragOutsideBoundary(): boolean;
set dragOutsideBoundary(value: boolean);
get enableBodyScroll(): boolean;
set enableBodyScroll(value: boolean);
get focusStateEnabled(): boolean;
set focusStateEnabled(value: boolean);
get fullScreen(): boolean;
set fullScreen(value: boolean);
get height(): (() => number | string) | number | string;
set height(value: (() => number | string) | number | string);
get hideOnOutsideClick(): boolean | ((event: event) => boolean);
set hideOnOutsideClick(value: boolean | ((event: event) => boolean));
get hideOnParentScroll(): boolean;
set hideOnParentScroll(value: boolean);
get hint(): string | undefined;
set hint(value: string | undefined);
get hoverStateEnabled(): boolean;
set hoverStateEnabled(value: boolean);
get maxHeight(): (() => number | string) | number | string;
set maxHeight(value: (() => number | string) | number | string);
get maxWidth(): (() => number | string) | number | string;
set maxWidth(value: (() => number | string) | number | string);
get minHeight(): (() => number | string) | number | string;
set minHeight(value: (() => number | string) | number | string);
get minWidth(): (() => number | string) | number | string;
set minWidth(value: (() => number | string) | number | string);
get onContentReady(): ((e: EventInfo<any>) => void);
set onContentReady(value: ((e: EventInfo<any>) => void));
get onDisposing(): ((e: EventInfo<any>) => void);
set onDisposing(value: ((e: EventInfo<any>) => void));
get onHidden(): ((e: EventInfo<any>) => void);
set onHidden(value: ((e: EventInfo<any>) => void));
get onHiding(): ((e: {
cancel: boolean | any;
component: dxOverlay<any>;
element: any;
model: any;
}) => void);
set onHiding(value: ((e: {
cancel: boolean | any;
component: dxOverlay<any>;
element: any;
model: any;
}) => void));
get onInitialized(): ((e: {
component: CoreComponent<any>;
element: any;
}) => void);
set onInitialized(value: ((e: {
component: CoreComponent<any>;
element: any;
}) => void));
get onOptionChanged(): ((e: {
component: DOMComponent;
element: any;
fullName: string;
model: any;
name: string;
previousValue: any;
value: any;
}) => void);
set onOptionChanged(value: ((e: {
component: DOMComponent;
element: any;
fullName: string;
model: any;
name: string;
previousValue: any;
value: any;
}) => void));
get onResize(): ((e: {
component: dxPopup;
element: any;
event: event;
height: number;
model: any;
width: number;
}) => void);
set onResize(value: ((e: {
component: dxPopup;
element: any;
event: event;
height: number;
model: any;
width: number;
}) => void));
get onResizeEnd(): ((e: {
component: dxPopup;
element: any;
event: event;
height: number;
model: any;
width: number;
}) => void);
set onResizeEnd(value: ((e: {
component: dxPopup;
element: any;
event: event;
height: number;
model: any;
width: number;
}) => void));
get onResizeStart(): ((e: {
component: dxPopup;
element: any;
event: event;
height: number;
model: any;
width: number;
}) => void);
set onResizeStart(value: ((e: {
component: dxPopup;
element: any;
event: event;
height: number;
model: any;
width: number;
}) => void));
get onShowing(): ((e: {
cancel: boolean | any;
component: dxOverlay<any>;
element: any;
model: any;
}) => void);
set onShowing(value: ((e: {
cancel: boolean | any;
component: dxOverlay<any>;
element: any;
model: any;
}) => void));
get onShown(): ((e: EventInfo<any>) => void);
set onShown(value: ((e: EventInfo<any>) => void));
get onTitleRendered(): ((e: {
component: dxPopup;
element: any;
model: any;
titleElement: any;
}) => void);
set onTitleRendered(value: ((e: {
component: dxPopup;
element: any;
model: any;
titleElement: any;
}) => void));
get position(): Function | PositionAlignment | PositionConfig;
set position(value: Function | PositionAlignment | PositionConfig);
get resizeEnabled(): boolean;
set resizeEnabled(value: boolean);
get restorePosition(): boolean;
set restorePosition(value: boolean);
get rtlEnabled(): boolean;
set rtlEnabled(value: boolean);
get shading(): boolean;
set shading(value: boolean);
get shadingColor(): string;
set shadingColor(value: string);
get showCloseButton(): boolean;
set showCloseButton(value: boolean);
get showTitle(): boolean;
set showTitle(value: boolean);
get tabIndex(): number;
set tabIndex(value: number);
get title(): string;
set title(value: string);
get titleTemplate(): any;
set titleTemplate(value: any);
get toolbarItems(): Array<dxPopupToolbarItem>;
set toolbarItems(value: Array<dxPopupToolbarItem>);
get visible(): boolean;
set visible(value: boolean);
get width(): (() => number | string) | number | string;
set width(value: (() => number | string) | number | string);
get wrapperAttr(): any;
set wrapperAttr(value: any);
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
heightChange: EventEmitter<(() => number | string) | number | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
positionChange: EventEmitter<Function | PositionAlignment | PositionConfig>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
visibleChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
widthChange: EventEmitter<(() => number | string) | number | string>;
protected get _optionPath(): string;
get toolbarItemsChildren(): QueryList<DxiDateBoxToolbarItemComponent>;
set toolbarItemsChildren(value: QueryList<DxiDateBoxToolbarItemComponent>);
constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DxoDateBoxDropDownOptionsComponent, [{ host: true; skipSelf: true; }, { host: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<DxoDateBoxDropDownOptionsComponent, "dxo-date-box-drop-down-options", never, { "accessKey": { "alias": "accessKey"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; }; "container": { "alias": "container"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; "deferRendering": { "alias": "deferRendering"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dragAndResizeArea": { "alias": "dragAndResizeArea"; "required": false; }; "dragEnabled": { "alias": "dragEnabled"; "required": false; }; "dragOutsideBoundary": { "alias": "dragOutsideBoundary"; "required": false; }; "enableBodyScroll": { "alias": "enableBodyScroll"; "required": false; }; "focusStateEnabled": { "alias": "focusStateEnabled"; "required": false; }; "fullScreen": { "alias": "fullScreen"; "required": false; }; "height": { "alias": "height"; "required": false; }; "hideOnOutsideClick": { "alias": "hideOnOutsideClick"; "required": false; }; "hideOnParentScroll": { "alias": "hideOnParentScroll"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "hoverStateEnabled": { "alias": "hoverStateEnabled"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "onContentReady": { "alias": "onContentReady"; "required": false; }; "onDisposing": { "alias": "onDisposing"; "required": false; }; "onHidden": { "alias": "onHidden"; "required": false; }; "onHiding": { "alias": "onHiding"; "required": false; }; "onInitialized": { "alias": "onInitialized"; "required": false; }; "onOptionChanged": { "alias": "onOptionChanged"; "required": false; }; "onResize": { "alias": "onResize"; "required": false; }; "onResizeEnd": { "alias": "onResizeEnd"; "required": false; }; "onResizeStart": { "alias": "onResizeStart"; "required": false; }; "onShowing": { "alias": "onShowing"; "required": false; }; "onShown": { "alias": "onShown"; "required": false; }; "onTitleRendered": { "alias": "onTitleRendered"; "required": false; }; "position": { "alias": "position"; "required": false; }; "resizeEnabled": { "alias": "resizeEnabled"; "required": false; }; "restorePosition": { "alias": "restorePosition"; "required": false; }; "rtlEnabled": { "alias": "rtlEnabled"; "required": false; }; "shading": { "alias": "shading"; "required": false; }; "shadingColor": { "alias": "shadingColor"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "title": { "alias": "title"; "required": false; }; "titleTemplate": { "alias": "titleTemplate"; "required": false; }; "toolbarItems": { "alias": "toolbarItems"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "width": { "alias": "width"; "required": false; }; "wrapperAttr": { "alias": "wrapperAttr"; "required": false; }; }, { "heightChange": "heightChange"; "positionChange": "positionChange"; "visibleChange": "visibleChange"; "widthChange": "widthChange"; }, ["toolbarItemsChildren"], never, false, never>;
}
export declare class DxoDateBoxDropDownOptionsModule {
static ɵfac: i0.ɵɵFactoryDeclaration<DxoDateBoxDropDownOptionsModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<DxoDateBoxDropDownOptionsModule, [typeof DxoDateBoxDropDownOptionsComponent], never, [typeof DxoDateBoxDropDownOptionsComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<DxoDateBoxDropDownOptionsModule>;
}