@porscheinformatik/clr-addons
Version:
Addon components for Clarity Angular
21 lines (20 loc) • 768 B
TypeScript
import { ClrPopoverPosition } from '@clr/angular';
/**
* Popover positions.
* https://github.com/vmware-clarity/ng-clarity/blob/f1a668086bf88bcf5ef1cd36b0d150e45e88def7/projects/angular/src/utils/popover/enums/positions.enum.ts
*/
export declare class PopoverPositions {
static options: string[];
static 'bottom-left': ClrPopoverPosition;
static 'bottom-right': ClrPopoverPosition;
static 'left-bottom': ClrPopoverPosition;
static 'left-top': ClrPopoverPosition;
static 'right-bottom': ClrPopoverPosition;
static 'right-top': ClrPopoverPosition;
static 'top-left': ClrPopoverPosition;
static 'top-right': ClrPopoverPosition;
}
/**
* Popover position.
*/
export type PopoverPosition = (typeof PopoverPositions.options)[number];