ados-rcm 1.1.799 → 1.1.801

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.
@@ -57,6 +57,12 @@ export interface IABaseProps extends React.HTMLAttributes<HTMLElement> {
57
57
  * Description : props of the progress bar
58
58
  */
59
59
  progressProps?: Omit<IAProgressBarProps, 'progress'>;
60
+ /**
61
+ * showTooltipOnDimmed? : boolean
62
+ *
63
+ * Description : if truthy, tooltip is shown above the dimmer (z-index increased).
64
+ */
65
+ showTooltipOnDimmed?: boolean;
60
66
  style?: React.CSSProperties;
61
67
  /**
62
68
  * tooltip? : React.ReactNode
@@ -30,6 +30,12 @@ interface IATooltipProps {
30
30
  * Description : tooltip of ATooltip
31
31
  */
32
32
  tooltip: React.ReactNode;
33
+ /**
34
+ * zIndex? : number
35
+ *
36
+ * Description : z-index of tooltip
37
+ */
38
+ zIndex?: number;
33
39
  }
34
40
  /**
35
41
  * AComponent : ATooltip