Skip to content

Commit ab124cc

Browse files
authored
fix: fixed popover type (DevExpress#30208)
1 parent 62057d2 commit ab124cc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/devextreme/js/ui/popover.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313

1414
import {
1515
Cancelable,
16+
AsyncCancelable,
1617
EventInfo,
1718
InitializedEventInfo,
1819
ChangedOptionInfo,
@@ -52,7 +53,7 @@ export type DisposingEvent = EventInfo<dxPopover>;
5253
* @type object
5354
* @inherits Cancelable,EventInfo
5455
*/
55-
export type HidingEvent = Cancelable & EventInfo<dxPopover>;
56+
export type HidingEvent = AsyncCancelable & EventInfo<dxPopover>;
5657

5758
/**
5859
* @docid _ui_popover_HiddenEvent

packages/devextreme/ts/dx.all.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24510,7 +24510,7 @@ declare module DevExpress.ui {
2451024510
/**
2451124511
* [descr:_ui_popover_HidingEvent]
2451224512
*/
24513-
export type HidingEvent = DevExpress.common.core.events.Cancelable &
24513+
export type HidingEvent = DevExpress.common.core.events.AsyncCancelable &
2451424514
DevExpress.common.core.events.EventInfo<dxPopover>;
2451524515
/**
2451624516
* [descr:_ui_popover_InitializedEvent]

0 commit comments

Comments
 (0)