Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions packages/devextreme/js/ui/card_view.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -717,8 +717,8 @@ export type CardHoverChangedEvent = EventInfo<dxCardView> & WithCardInfo & {
};

/**
* @public
* @docid
* @public
*/
export type FieldTemplateData = {
/**
Expand All @@ -729,18 +729,26 @@ export type FieldTemplateData = {
};

/**
* @public
* @docid
* @public
*/
export type CardTemplateData = {
/**
* @docid
* @public
*/
card: CardInfo;
};

/**
* @public
* @docid
* @public
*/
export type ColumnTemplateData<TCardData = unknown, TKey = unknown> = {
/**
* @docid
* @public
*/
column: Column<TCardData, TKey>;
};

Expand Down
6 changes: 6 additions & 0 deletions packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10405,6 +10405,9 @@ declare module DevExpress.ui {
* [descr:CardTemplateData]
*/
export type CardTemplateData = {
/**
* [descr:CardTemplateData.card]
*/
card: CardInfo;
};
/**
Expand Down Expand Up @@ -10448,6 +10451,9 @@ declare module DevExpress.ui {
* [descr:ColumnTemplateData]
*/
export type ColumnTemplateData<TCardData = unknown, TKey = unknown> = {
/**
* [descr:ColumnTemplateData.column]
*/
column: Column<TCardData, TKey>;
};
/**
Expand Down
Loading