ados-rcm 1.0.492 → 1.0.494

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.
@@ -72,11 +72,11 @@ export interface IAFloatMenuProps<T> {
72
72
  */
73
73
  defaultDef?: IAFloatMenuDef<T>;
74
74
  /**
75
- * anchorRef : React.RefObject<HTMLElement>
75
+ * anchorElem : HTMLElement
76
76
  *
77
- * Description : anchorRef of AFloatMenu
77
+ * Description : anchorElem of AFloatMenu
78
78
  */
79
- anchorRef: React.RefObject<HTMLElement>;
79
+ anchorElem: HTMLElement;
80
80
  /**
81
81
  * position? : EDir12 = EDir12.ES
82
82
  *
@@ -89,6 +89,12 @@ export interface IAFloatMenuProps<T> {
89
89
  * Description : onClick of AFloatMenu
90
90
  */
91
91
  onClick?: (key: keyof T) => any;
92
+ /**
93
+ * onClose? : () => void
94
+ *
95
+ * Description : onClose of AFloatMenu
96
+ */
97
+ onClose?: () => void;
92
98
  /**
93
99
  * offset? : IOffset
94
100
  *
@@ -29,6 +29,7 @@ export interface IOffset {
29
29
  y?: number;
30
30
  }
31
31
  export declare function setDir12Style(anchorRef: React.RefObject<HTMLElement>, selfRef: React.RefObject<HTMLElement>, dir: EDir12, offset?: IOffset): void;
32
+ export declare function setDir12StyleElem(anchorElem: HTMLElement | null, selfRef: React.RefObject<HTMLElement>, dir: EDir12, offset?: IOffset): void;
32
33
  export type TActionRef<T> = React.MutableRefObject<T | null | undefined>;
33
34
  export type TIdx = number | string;
34
35
  export interface IACalledEvent {