@secondstaxorg/sscomp 1.7.13 → 1.7.14

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.7.13",
3
+ "version": "1.7.14",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -1,5 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { TooltipProps } from "./type";
3
+ import 'tippy.js/dist/tippy.css';
3
4
  /**
4
5
  * Tooltip text to be displayed on an element
5
6
  */
@@ -16,4 +16,12 @@ export interface TooltipProps {
16
16
  * The HTML id attribute assigned to the child element wrapped inside the tooltip
17
17
  */
18
18
  childElementId: string;
19
+ /**
20
+ * Specify whether the tooltip is interactive
21
+ */
22
+ interactive?: boolean;
23
+ /**
24
+ * Specify when or whether the tooltip should be visible when associated element is overed over.
25
+ */
26
+ tooltipVisible: boolean;
19
27
  }