@progress/kendo-vue-layout
Version:
30 lines (29 loc) • 912 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { cardActionsLayout, cardOrientation } from './Enums';
export interface CardActionsProps {
/**
* Set the layout of the actions.
*
* The supported values are:
* * (Default) `start`
* * `center`
* * `end`
* * `stretched`
*/
layout?: cardActionsLayout | string;
/**
* Specifies the orientation of the Card action buttons.
*
* * The possible values are:
* * (Default) `horizontal`
* * `vertical`
*
*/
orientation?: cardOrientation | string;
}