ados-rcm 1.1.559 → 1.1.562

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
  /**
@@ -65,6 +71,12 @@ export interface IAFloatMenuProps<T> {
65
71
  * Description : defs of AFloatMenu
66
72
  */
67
73
  defs: TAFloatMenuDefs<T>;
74
+ /**
75
+ * items : T[]
76
+ *
77
+ * Description : items data for AFloatMenu
78
+ */
79
+ items?: T[];
68
80
  /**
69
81
  * offset? : IOffset
70
82
  *