ados-rcm 1.0.499 → 1.0.500

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,23 +3,17 @@ import { TCanCallback } from '../../AUtils/cbF';
3
3
  import { EDir12, IOffset, TActionRef } from '../ATypes/ATypes';
4
4
  export interface IAFloatMenuActions {
5
5
  /**
6
- * open : () => void
6
+ * open : (elem : HTMLElement) => void
7
7
  *
8
8
  * Description : open AFloatMenu
9
9
  */
10
- open: () => void;
10
+ open: (elem: HTMLElement) => void;
11
11
  /**
12
12
  * close : () => void
13
13
  *
14
14
  * Description : close AFloatMenu
15
15
  */
16
16
  close: () => void;
17
- /**
18
- * toggle : () => void
19
- *
20
- * Description : toggle AFloatMenu
21
- */
22
- toggle: () => void;
23
17
  }
24
18
  export interface IAFloatMenuContentProps<T> {
25
19
  /**
@@ -76,7 +70,6 @@ export interface IAFloatMenuProps<T> {
76
70
  *
77
71
  * Description : anchorElem of AFloatMenu
78
72
  */
79
- anchorElem: HTMLElement | null;
80
73
  /**
81
74
  * position? : EDir12 = EDir12.ES
82
75
  *