UNPKG

@progress/kendo-angular-layout

Version:

Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts

43 lines (42 loc) 1.64 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnDestroy } from '@angular/core'; import { LocalizationService } from '@progress/kendo-angular-l10n'; import { Orientation } from '../common/orientation'; import * as i0 from "@angular/core"; /** * Represents the [Kendo UI Card component for Angular]({% slug overview_card %}) */ export declare class CardComponent implements OnDestroy { private localizationService; hostClass: boolean; get widthStyle(): string; get vertical(): boolean; get horizontal(): boolean; /** * @hidden */ direction: string; /** * Specifies the layout of the Card content. * * The possible values are: * * (Default) `vertical` * * `horizontal` * */ orientation: Orientation; /** * Defines the width of the Card. * Defaults to `285px`. */ width: string; private dynamicRTLSubscription; private rtl; constructor(localizationService: LocalizationService); ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "kendo-card", never, { "orientation": { "alias": "orientation"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], true, never>; }