@rogieking/figui3 1.0.59 → 1.0.61

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 -3
  2. package/fig.js +3 -1
  3. package/package.json +1 -1
package/fig.css CHANGED
@@ -1848,7 +1848,6 @@ fig-icon.close {
1848
1848
 
1849
1849
  /* Web Components */
1850
1850
  fig-button,
1851
- fig-tooltip,
1852
1851
  fig-popover,
1853
1852
  fig-dialog,
1854
1853
  fig-content,
@@ -1859,8 +1858,7 @@ fig-input-text,
1859
1858
  fig-checkbox,
1860
1859
  fig-radio,
1861
1860
  fig-tab,
1862
- fig-tabs,
1863
- fig-tooltip {
1861
+ fig-tabs {
1864
1862
  display: inline-flex;
1865
1863
  gap: var(--spacer-2);
1866
1864
  user-select: none;
package/fig.js CHANGED
@@ -163,7 +163,9 @@ class FigTooltip extends HTMLElement {
163
163
  this.destroy();
164
164
  }
165
165
 
166
- setup() {}
166
+ setup() {
167
+ this.style.display = "contents";
168
+ }
167
169
 
168
170
  render() {
169
171
  this.destroy();
package/package.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@rogieking/figui3",
3
- "version": "1.0.59"
3
+ "version": "1.0.61"
4
4
  }