ados-rcm 1.1.450 → 1.1.452
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.
- package/dist/AModule/AComponents/ATab/ATab.d.ts +19 -1
- package/dist/index.cjs.js +95 -95
- package/dist/index.es.js +5586 -5563
- package/package.json +1 -1
@@ -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
|