ados-rcm 1.1.125 → 1.1.126
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 +21 -21
- package/dist/index.es.js +2528 -2528
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { TCanCallback } from '../../AUtils/cbF';
|
3
3
|
import { IABaseProps } from '../ABase/ABase';
|
4
|
-
import { EDir12, IOffset, TActionRef } from '../ATypes/ATypes';
|
4
|
+
import { EDir12, IAEvent, IOffset, TActionRef } from '../ATypes/ATypes';
|
5
5
|
export interface IAFloatMenuActions {
|
6
6
|
/**
|
7
7
|
* open : (elem : HTMLElement) => void
|
@@ -83,6 +83,12 @@ export interface IAFloatMenuProps<T> {
|
|
83
83
|
* Description : offset of AFloatMenu
|
84
84
|
*/
|
85
85
|
offset?: IOffset;
|
86
|
+
/**
|
87
|
+
* onCancel? : () => any
|
88
|
+
*
|
89
|
+
* Description : onCancel of AFloatMenu
|
90
|
+
*/
|
91
|
+
onCancel?: (e: IAEvent) => any;
|
86
92
|
/**
|
87
93
|
* onClose? : () => any
|
88
94
|
*
|