gantri-components 2.73.0 → 2.73.1-beta.1
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.
|
@@ -11,6 +11,8 @@ export interface OverlayProps {
|
|
|
11
11
|
content: ReactNode;
|
|
12
12
|
contentStyles?: CSSProperties;
|
|
13
13
|
disabled?: boolean;
|
|
14
|
+
/** Optional. If you provide a single key for multiple overlays, it will replace the last overlay with that key with the new one. */
|
|
15
|
+
key?: string;
|
|
14
16
|
offsetBottom?: string;
|
|
15
17
|
offsetLeft?: string;
|
|
16
18
|
offsetRight?: string;
|
|
@@ -12,6 +12,8 @@ type TooltipBaseProps = Partial<TooltipDefaultProps> & {
|
|
|
12
12
|
closeDelay?: number;
|
|
13
13
|
description?: string;
|
|
14
14
|
descriptionTx?: string;
|
|
15
|
+
/** Optional. If you provide a single key for multiple tooltips, it will replace the last tooltip with that key with the new one. */
|
|
16
|
+
key?: string;
|
|
15
17
|
title?: string;
|
|
16
18
|
titleTx?: string;
|
|
17
19
|
};
|