ados-rcm 1.1.557 → 1.1.558
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.
@@ -41,7 +41,7 @@ export interface IAFloatMenuDef<T> extends Omit<IABaseProps, 'content'> {
|
|
41
41
|
*
|
42
42
|
* Description : decides whether to display the menu or not
|
43
43
|
*/
|
44
|
-
noDisplay?: boolean
|
44
|
+
noDisplay?: TCanCallback<IAFloatMenuContentProps<T>, boolean>;
|
45
45
|
}
|
46
46
|
export type TAFloatMenuDefs<T> = {
|
47
47
|
[key in keyof T]?: IAFloatMenuDef<T>;
|
@@ -95,10 +95,10 @@ export interface IAFloatMenuProps<T> {
|
|
95
95
|
* Description : anchorElem of AFloatMenu
|
96
96
|
*/
|
97
97
|
/**
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
98
|
+
* position? : EDir12 = EDir12.ES
|
99
|
+
*
|
100
|
+
* Description : position of AFloatMenu based on anchorRef
|
101
|
+
*/
|
102
102
|
position?: EDir12;
|
103
103
|
/**
|
104
104
|
* width? : string | number
|