ados-rcm 1.1.318 → 1.1.320

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  import { TCanCallback } from '../../AUtils/cbF';
2
2
  import { IABaseProps } from '../ABase/ABase';
3
- import { EDir12, IOffset, TActionRef } from '../ATypes/ATypes';
3
+ import { EDir12, IAEvent, IOffset, TActionRef, TPromisable } from '../ATypes/ATypes';
4
4
  export interface IAFloatMenuActions {
5
5
  /**
6
6
  * open : (elem : HTMLElement) => void
@@ -82,6 +82,12 @@ export interface IAFloatMenuProps<T> {
82
82
  * Description : offset of AFloatMenu
83
83
  */
84
84
  offset?: IOffset;
85
+ /**
86
+ * onPaperClick : (e: IAEvent) => void;
87
+ *
88
+ * Description : onPaperClick of the dialog. it runs cancel by default
89
+ */
90
+ onPaperClick?: (e: IAEvent) => TPromisable<any>;
85
91
  /**
86
92
  * onClose? : () => any
87
93
  *