@flytedan/flytebot-design-system 0.8.1 → 0.8.2

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/index.js CHANGED
@@ -2572,9 +2572,9 @@ function EntityRow({ title, meta, action, draggable = false, onPointerDown, styl
2572
2572
  },
2573
2573
  children: [
2574
2574
  draggable ? /* @__PURE__ */ jsx38("i", { className: "ph ph-dots-six-vertical", "aria-hidden": "true", style: { fontSize: 14, flex: "none", color: "var(--text-muted)" } }) : null,
2575
- /* @__PURE__ */ jsxs34("span", { style: { flex: 1, minWidth: 0, display: "flex", flexDirection: "column", gap: 2 }, children: [
2576
- /* @__PURE__ */ jsx38("span", { className: "fd-body-sm", style: { fontWeight: 600, color: "var(--text)", whiteSpace: "nowrap", overflow: "hidden", textOverflow: "ellipsis" }, children: title }),
2577
- meta ? /* @__PURE__ */ jsx38("span", { style: { fontSize: "var(--overline-size)", color: "var(--text-muted)", whiteSpace: "nowrap", overflow: "hidden", textOverflow: "ellipsis" }, children: meta }) : null
2575
+ /* @__PURE__ */ jsxs34("span", { style: { flex: 1, minWidth: 0, display: "flex", alignItems: "baseline", gap: 8 }, children: [
2576
+ /* @__PURE__ */ jsx38("span", { className: "fd-body-sm", style: { flex: 1, minWidth: 0, fontWeight: 600, color: "var(--text)", whiteSpace: "nowrap", overflow: "hidden", textOverflow: "ellipsis" }, children: title }),
2577
+ meta ? /* @__PURE__ */ jsx38("span", { style: { flex: "none", fontSize: "var(--overline-size)", color: "var(--text-muted)", whiteSpace: "nowrap" }, children: meta }) : null
2578
2578
  ] }),
2579
2579
  action ? /* @__PURE__ */ jsx38(
2580
2580
  IconButton,