@progress/kendo-angular-layout
Version:
Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts
65 lines (64 loc) • 2.25 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { EventEmitter, TemplateRef } from '@angular/core';
import { ActionsLayout } from './models/actions-layout';
import { CardAction } from './models/card-action';
import { Orientation } from '../common/orientation';
import * as i0 from "@angular/core";
/**
* Specifies the action buttons of the Card.
* * ([see example]({% slug actions_card %})).
*/
export declare class CardActionsComponent {
hostClass: boolean;
get stretchedClass(): boolean;
get startClass(): boolean;
get endClass(): boolean;
get centerClass(): boolean;
get verticalClass(): boolean;
get horizontalClass(): boolean;
/**
* Specifies the layout of the Card action buttons.
*
* * The possible values are:
* * (Default) `horizontal`
* * `vertical`
*
*/
orientation: Orientation;
/**
* Specifies the layout of the Card action buttons.
*
* The possible values are:
* * (Default) `start`
* * `center`
* * `end`
* * `stretched`
*
*/
layout: ActionsLayout;
/**
* Allows the declarative specification of the Card actions.
*/
set actions(value: CardAction[] | TemplateRef<any>);
/**
* Fires when the user clicks an action button.
*/
action: EventEmitter<CardAction>;
/**
* @hidden
*/
actionsArray: CardAction[];
/**
* @hidden
*/
actionsTemplate: TemplateRef<any>;
/**
* @hidden
*/
onClick(action: CardAction): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CardActionsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CardActionsComponent, "kendo-card-actions", never, { "orientation": { "alias": "orientation"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "action": "action"; }, never, ["*"], true, never>;
}