@ptsecurity/mosaic
Version:
30 lines (29 loc) • 662 B
TypeScript
export declare enum PopUpPlacements {
Top = "top",
TopLeft = "topLeft",
TopRight = "topRight",
Right = "right",
RightTop = "rightTop",
RightBottom = "rightBottom",
Left = "left",
LeftTop = "leftTop",
LeftBottom = "leftBottom",
Bottom = "bottom",
BottomLeft = "bottomLeft",
BottomRight = "bottomRight"
}
export declare enum PopUpVisibility {
Initial = "initial",
Visible = "visible",
Hidden = "hidden"
}
export declare enum PopUpTriggers {
Click = "click",
Focus = "focus",
Hover = "hover"
}
export declare enum PopUpSizes {
Small = "small",
Normal = "normal",
Large = "large"
}