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.
- package/dist/AModule/AComponents/AFloatMenu/AFloatMenu.d.ts +7 -1
- package/dist/index.cjs.js +16 -16
- package/dist/index.es.js +2319 -2318
- package/package.json +1 -1
@@ -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
|
*
|