ados-rcm 1.1.450 → 1.1.451

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.
@@ -67,15 +67,33 @@ export interface IATabProps<T> {
67
67
  /**
68
68
  * color? : string
69
69
  *
70
- * Description : color of ATab
70
+ * Description : color of unselected options in ATab
71
71
  */
72
72
  color?: string;
73
+ /**
74
+ * selectedColor? : string
75
+ *
76
+ * Description : color of selected option in ATab
77
+ */
78
+ selectedColor?: string;
73
79
  /**
74
80
  * underline? : boolean
75
81
  *
76
82
  * Description : underline of ATab
77
83
  */
78
84
  underline?: boolean;
85
+ /**
86
+ * indicatorProps? : React.HTMLProps<HTMLDivElement>
87
+ *
88
+ * Description : props for the indicator element of ATab
89
+ */
90
+ indicatorProps?: React.HTMLProps<HTMLDivElement>;
91
+ /**
92
+ * indicatorTrackProps? : React.HTMLProps<HTMLDivElement>
93
+ *
94
+ * Description : props for the indicator track element of ATab
95
+ */
96
+ indicatorTrackProps?: React.HTMLProps<HTMLDivElement>;
79
97
  }
80
98
  /**
81
99
  * AComponent : ATab