@rogieking/figui3 1.0.59 → 1.0.60

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.
Files changed (3) hide show
  1. package/fig.css +1 -2
  2. package/fig.js +1 -0
  3. package/package.json +1 -1
package/fig.css CHANGED
@@ -1859,8 +1859,7 @@ fig-input-text,
1859
1859
  fig-checkbox,
1860
1860
  fig-radio,
1861
1861
  fig-tab,
1862
- fig-tabs,
1863
- fig-tooltip {
1862
+ fig-tabs {
1864
1863
  display: inline-flex;
1865
1864
  gap: var(--spacer-2);
1866
1865
  user-select: none;
package/fig.js CHANGED
@@ -153,6 +153,7 @@ class FigTooltip extends HTMLElement {
153
153
  this.action = this.getAttribute("action") || "hover";
154
154
  this.delay = parseInt(this.getAttribute("delay")) || 500;
155
155
  this.isOpen = false;
156
+ this.style.display = "contents";
156
157
  }
157
158
  connectedCallback() {
158
159
  this.setup();
package/package.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@rogieking/figui3",
3
- "version": "1.0.59"
3
+ "version": "1.0.60"
4
4
  }