ados-rcm 1.1.23 → 1.1.25

Sign up to get free protection for your applications and to get access to all the features.
@@ -24,6 +24,10 @@ export interface IAIconProps extends IASVGProps {
24
24
  * <AIcon icon="Alert"/>
25
25
  */
26
26
  export declare const AIcon: (props: IAIconProps) => import("react/jsx-runtime").JSX.Element;
27
+ interface IAIconHOCProps<T extends string> extends Omit<IAIconProps, 'icon'> {
28
+ icon: T | TIcons;
29
+ }
30
+ export declare const AIconHOC: <T extends string>(customIcons: Record<T, (props?: IASVGProps) => JSX.Element>) => (props: IAIconHOCProps<T>) => import("react/jsx-runtime").JSX.Element;
27
31
  declare const Icons: Readonly<{
28
32
  ArrowDown: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
29
33
  ArrowUp: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
@@ -26,7 +26,7 @@ export interface IATreeItemProps<T> {
26
26
  isSelectMulti: boolean;
27
27
  isDraggable: boolean;
28
28
  isParentCheckHovered: boolean;
29
- isHovered: boolean;
29
+ isHovered?: boolean;
30
30
  ContentRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
31
31
  TreeItemRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
32
32
  RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;