devextreme-angular
Version:
Angular UI and visualization components based on DevExtreme widgets
66 lines (65 loc) • 2.25 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 { NestedOption } from 'devextreme-angular/core';
import { HorizontalAlignment, PositionAlignment, VerticalAlignment } from 'devextreme/common';
import { CollisionResolution, CollisionResolutionCombination } from 'devextreme/common/core/animation';
import { UserDefinedElement } from 'devextreme/core/element';
import * as i0 from "@angular/core";
export declare abstract class DxoPositionConfig extends NestedOption {
get at(): PositionAlignment | {
x?: HorizontalAlignment;
y?: VerticalAlignment;
};
set at(value: PositionAlignment | {
x?: HorizontalAlignment;
y?: VerticalAlignment;
});
get boundary(): UserDefinedElement | string | Window;
set boundary(value: UserDefinedElement | string | Window);
get boundaryOffset(): string | {
x?: number;
y?: number;
};
set boundaryOffset(value: string | {
x?: number;
y?: number;
});
get collision(): CollisionResolutionCombination | {
x?: CollisionResolution;
y?: CollisionResolution;
};
set collision(value: CollisionResolutionCombination | {
x?: CollisionResolution;
y?: CollisionResolution;
});
get my(): PositionAlignment | {
x?: HorizontalAlignment;
y?: VerticalAlignment;
};
set my(value: PositionAlignment | {
x?: HorizontalAlignment;
y?: VerticalAlignment;
});
get of(): UserDefinedElement | string | Window;
set of(value: UserDefinedElement | string | Window);
get offset(): string | {
x?: number;
y?: number;
};
set offset(value: string | {
x?: number;
y?: number;
});
static ɵfac: i0.ɵɵFactoryDeclaration<DxoPositionConfig, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DxoPositionConfig, "ng-component", never, {}, {}, never, never, false, never>;
}