ados-rcm 1.1.558 → 1.1.560

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.
@@ -28,6 +28,12 @@ export interface IAFloatMenuContentProps<T> {
28
28
  * Description : defKey of AFloatMenu
29
29
  */
30
30
  defKey: keyof T;
31
+ /**
32
+ * item : T
33
+ *
34
+ * Description : item of AFloatMenu
35
+ */
36
+ item: T;
31
37
  }
32
38
  export interface IAFloatMenuDef<T> extends Omit<IABaseProps, 'content'> {
33
39
  /**
@@ -37,7 +43,7 @@ export interface IAFloatMenuDef<T> extends Omit<IABaseProps, 'content'> {
37
43
  */
38
44
  content?: TCanCallback<IAFloatMenuContentProps<T>, React.ReactNode>;
39
45
  /**
40
- * noDisplay? : boolean
46
+ * noDisplay? : TCanCallback<IAFloatMenuContentProps<T>, boolean>
41
47
  *
42
48
  * Description : decides whether to display the menu or not
43
49
  */
@@ -65,6 +71,12 @@ export interface IAFloatMenuProps<T> {
65
71
  * Description : defs of AFloatMenu
66
72
  */
67
73
  defs: TAFloatMenuDefs<T>;
74
+ /**
75
+ * item : T
76
+ *
77
+ * Description : item data for AFloatMenu
78
+ */
79
+ item: T;
68
80
  /**
69
81
  * offset? : IOffset
70
82
  *