/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Align, PopupAnimation } from '@progress/kendo-vue-popup'; /** * Represents the settings that can be passed to the Popup inside the FloatingActionButtonPopupSettings. */ export interface FloatingActionButtonPopupSettings { /** * Controls the popup animation. By default, the open and close animations are enabled * [see example]({% slug customization_floatingactionbutton %}#toc-popup-behavior). */ animate?: boolean | PopupAnimation; /** * Specifies a list of CSS classes that are used for styling the popup * [see example]({% slug customization_floatingactionbutton %}#toc-popup-behavior). */ popupClass?: string; /** * @hidden */ anchorAlign?: Align; /** * @hidden */ popupAlign?: Align; }