@dovetail-v2/refine 0.3.26-alpha.0 → 0.3.26-alpha.1

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/dist/refine.cjs CHANGED
@@ -7642,14 +7642,19 @@ function ValueDisplay(props) {
7642
7642
  className,
7643
7643
  style
7644
7644
  } = props;
7645
- const result = useOverflow ? /* @__PURE__ */ common.jsxRuntimeExports.jsx(eagle.OverflowTooltip, {
7646
- content: value2,
7645
+ const htmlTitle = typeof value2 === "string" || typeof value2 === "number" ? String(value2) : void 0;
7646
+ const result = useOverflow ? /* @__PURE__ */ common.jsxRuntimeExports.jsx("div", {
7647
+ title: htmlTitle,
7647
7648
  style,
7648
- className: common.cx_default(className, ContentStyle$2)
7649
+ className: common.cx_default(className, ContentStyle$2),
7650
+ children: /* @__PURE__ */ common.jsxRuntimeExports.jsx(eagle.OverflowTooltip, {
7651
+ content: value2,
7652
+ className: ContentStyle$2
7653
+ })
7649
7654
  }) : /* @__PURE__ */ common.jsxRuntimeExports.jsx("div", {
7650
7655
  style,
7651
7656
  className: common.cx_default(className, ContentStyle$2),
7652
- title: typeof value2 === "string" || typeof value2 === "number" ? String(value2) : "",
7657
+ title: htmlTitle ?? "",
7653
7658
  children: value2
7654
7659
  });
7655
7660
  return EMPTY_VALUES.includes(value2) ? /* @__PURE__ */ common.jsxRuntimeExports.jsx("div", {
package/dist/refine.js CHANGED
@@ -7623,14 +7623,19 @@ function ValueDisplay(props) {
7623
7623
  className,
7624
7624
  style
7625
7625
  } = props;
7626
- const result = useOverflow ? /* @__PURE__ */ jsxRuntimeExports.jsx(OverflowTooltip, {
7627
- content: value2,
7626
+ const htmlTitle = typeof value2 === "string" || typeof value2 === "number" ? String(value2) : void 0;
7627
+ const result = useOverflow ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
7628
+ title: htmlTitle,
7628
7629
  style,
7629
- className: cx_default(className, ContentStyle$2)
7630
+ className: cx_default(className, ContentStyle$2),
7631
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx(OverflowTooltip, {
7632
+ content: value2,
7633
+ className: ContentStyle$2
7634
+ })
7630
7635
  }) : /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
7631
7636
  style,
7632
7637
  className: cx_default(className, ContentStyle$2),
7633
- title: typeof value2 === "string" || typeof value2 === "number" ? String(value2) : "",
7638
+ title: htmlTitle ?? "",
7634
7639
  children: value2
7635
7640
  });
7636
7641
  return EMPTY_VALUES.includes(value2) ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dovetail-v2/refine",
3
- "version": "0.3.26-alpha.0",
3
+ "version": "0.3.26-alpha.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",