ados-rcm 1.0.583 → 1.0.585
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.
@@ -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': "
|
186
|
+
readonly '--AButton_Primary_border': "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)";
|
@@ -199,17 +199,11 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
199
199
|
*/
|
200
200
|
autoFocus?: boolean;
|
201
201
|
/**
|
202
|
-
*
|
202
|
+
* treeItemStyle? : React.CSSProperties
|
203
203
|
*
|
204
204
|
* Description : style of ATreeItem
|
205
205
|
*/
|
206
206
|
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
207
|
-
/**
|
208
|
-
* TreeItemClassName? : string
|
209
|
-
*
|
210
|
-
* Description : className of ATreeItem
|
211
|
-
*/
|
212
|
-
TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
213
207
|
}
|
214
208
|
/**
|
215
209
|
* AComponent : ATree
|
@@ -32,7 +32,6 @@ export interface IATreeItemProps<T> {
|
|
32
32
|
resources: typeof Resources.ATree;
|
33
33
|
containerRef: React.RefObject<HTMLDivElement>;
|
34
34
|
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
35
|
-
TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
36
35
|
}
|
37
36
|
declare enum EIndentState {
|
38
37
|
Collapsed = "Collapsed",
|