From 9f075f9f7f1f740e2203bd2b59fb6c62e4e0d1de Mon Sep 17 00:00:00 2001 From: Serg-Kv Date: Tue, 18 Apr 2023 15:38:31 +0530 Subject: [PATCH] Web: Components: Tooltip - descriptions changed --- packages/components/tooltip/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/components/tooltip/index.js b/packages/components/tooltip/index.js index ed3b454ed4..2f024d93c0 100644 --- a/packages/components/tooltip/index.js +++ b/packages/components/tooltip/index.js @@ -75,21 +75,21 @@ class Tooltip extends Component { Tooltip.propTypes = { /** Used as HTML id property */ id: PropTypes.string, - /** Behavior of tooltip */ + /** Tooltip behavior */ effect: PropTypes.oneOf(["float", "solid"]), /** Global tooltip placement */ place: PropTypes.oneOf(["top", "right", "bottom", "left"]), - /** Generate the tip content dynamically */ + /** Sets a callback function that generates the tip content dynamically */ getContent: PropTypes.func, afterHide: PropTypes.func, afterShow: PropTypes.func, - /** Offset top all tooltips on page */ + /** Sets the top offset for all the tooltips on the page */ offsetTop: PropTypes.number, - /** Offset right all tooltips on page */ + /** Sets the right offset for all the tooltips on the page */ offsetRight: PropTypes.number, - /** Offset bottom all tooltips on page */ + /** Sets the bottom offset for all the tooltips on the page */ offsetBottom: PropTypes.number, - /** Offset left all tooltips on page */ + /** Sets the left offset for all the tooltips on the page */ offsetLeft: PropTypes.number, /** Child elements */ children: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),