ados-rcm 1.1.557 → 1.1.559

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.
@@ -37,11 +37,11 @@ export interface IAFloatMenuDef<T> extends Omit<IABaseProps, 'content'> {
37
37
  */
38
38
  content?: TCanCallback<IAFloatMenuContentProps<T>, React.ReactNode>;
39
39
  /**
40
- * noDisplay? : boolean
40
+ * noDisplay? : TCanCallback<IAFloatMenuContentProps<T>, boolean>
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
- * position? : EDir12 = EDir12.ES
99
- *
100
- * Description : position of AFloatMenu based on anchorRef
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