@dotglitch/ngx-common 1.1.7 → 1.1.8

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@dotglitch/ngx-common",
3
3
  "private": false,
4
- "version": "1.1.7",
4
+ "version": "1.1.8",
5
5
  "repository": {
6
6
  "url": "https://github.com/knackstedt/dotglitch-ngx/tree/main/packages/common"
7
7
  },
@@ -18,4 +18,9 @@ export type TooltipOptions = Partial<PopupOptions & {
18
18
  * - Default `hover`
19
19
  */
20
20
  triggers: ("click" | "hover")[];
21
+ /**
22
+ * Set to `true` to keep the tooltip open when hovered over.
23
+ * Primarily used for popping up interactive components
24
+ */
25
+ stayOpen: boolean;
21
26
  }>;