ados-rcm 1.0.586 → 1.0.588
Sign up to get free protection for your applications and to get access to all the features.
@@ -183,7 +183,7 @@ declare const Semantic: {
|
|
183
183
|
readonly '--ABase_Dimming_background-color': "var(--fill-background)";
|
184
184
|
readonly '--ATooltip_background-color': "var(--content-secondary)";
|
185
185
|
readonly '--ATooltip_color': "var(--ui-elevation)";
|
186
|
-
readonly '--AButton_Primary_border': "var(--button-fill-rest-primary)";
|
186
|
+
readonly '--AButton_Primary_border': "1px solid var(--button-fill-rest-primary)";
|
187
187
|
readonly '--AButton_Primary_background-color': "var(--button-fill-rest-primary)";
|
188
188
|
readonly '--AButton_Primary_color': "var(--button-text-primary)";
|
189
189
|
readonly '--AButton_Primary_hover_background-color': "var(--button-fill-hover-primary)";
|
@@ -210,6 +210,12 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
210
210
|
* Description : className of ATreeItem
|
211
211
|
*/
|
212
212
|
TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
213
|
+
/**
|
214
|
+
* TreeContainerClassName? : string
|
215
|
+
*
|
216
|
+
* Description : className of ATreeContainer
|
217
|
+
*/
|
218
|
+
TreeContainerClassName?: string;
|
213
219
|
}
|
214
220
|
/**
|
215
221
|
* AComponent : ATree
|