ados-rcm 1.1.570 → 1.1.571

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.
@@ -5,7 +5,7 @@ import { IItem } from '../../AUtils/objF';
5
5
  import { IABaseProps } from '../ABase/ABase';
6
6
  import { TIcons } from '../AIcon/AIcon';
7
7
  import { Resources } from '../AResource/AResource';
8
- import { TActionRef } from '../ATypes/ATypes';
8
+ import { EDir4, TActionRef } from '../ATypes/ATypes';
9
9
  import { IATreeItemProps, IIndentProps } from './ATreeItem';
10
10
  export interface IATreeSearchResult<T> {
11
11
  /**
@@ -261,6 +261,30 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
261
261
  * Description : width of ATree
262
262
  */
263
263
  width?: number;
264
+ /**
265
+ * treeItemTooltip? : string
266
+ *
267
+ * Description : treeItemTooltip of ATree
268
+ */
269
+ treeItemTooltip?: string;
270
+ /**
271
+ * treeItemTooltipDelay? : number
272
+ *
273
+ * Description : treeItemTooltipDelay of ATree
274
+ */
275
+ treeItemTooltipDelay?: number;
276
+ /**
277
+ * treeItemTooltipDirection? : EDir4
278
+ *
279
+ * Description : treeItemTooltipDirection of ATree
280
+ */
281
+ treeItemTooltipDirection?: EDir4;
282
+ /**
283
+ * treeItemTooltipDistance? : number
284
+ *
285
+ * Description : treeItemTooltipDistance of ATree
286
+ */
287
+ treeItemTooltipDistance?: number;
264
288
  }
265
289
  /**
266
290
  * AComponent : ATree
@@ -3,6 +3,7 @@ import { TUseValues } from '../../AHooks/useValues';
3
3
  import { TCanCallback } from '../../AUtils/cbF';
4
4
  import { TIcons } from '../AIcon/AIcon';
5
5
  import { Resources } from '../AResource/AResource';
6
+ import { EDir4 } from '../ATypes/ATypes';
6
7
  import { IATreeItem, IATreeSearchResult, TExpandState } from './ATree';
7
8
  export interface IATreeItemProps<T> {
8
9
  ContentRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
@@ -40,6 +41,10 @@ export interface IATreeItemProps<T> {
40
41
  selectDisabled?: (item: T) => boolean | string | undefined;
41
42
  selectUnused?: (item: T) => boolean;
42
43
  showCheckbox?: boolean;
44
+ treeItemTooltip?: string;
45
+ treeItemTooltipDelay?: number;
46
+ treeItemTooltipDirection?: EDir4;
47
+ treeItemTooltipDistance?: number;
43
48
  useExpand: TUseValues<T[]>;
44
49
  useSearch: TUseValues<IATreeSearchResult<T> | undefined>;
45
50
  useSelect: TUseValues<T[]>;