@homebound/beam 3.42.2 → 3.42.4

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.cjs CHANGED
@@ -6947,7 +6947,7 @@ var ColumnStates = class {
6947
6947
  }
6948
6948
  setVisibleColumns(ids) {
6949
6949
  for (const cs of this.map.values()) {
6950
- cs.setVisible(ids.includes(cs.column.id));
6950
+ cs.setVisible(cs.column.isLayoutGutter ? true : ids.includes(cs.column.id));
6951
6951
  }
6952
6952
  }
6953
6953
  loadExpanded(storageKey) {
@@ -16699,7 +16699,7 @@ function TableCardView(props) {
16699
16699
  /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { children: [
16700
16700
  eyebrow && /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("p", { className: "fw4 fz_14px lh_20px", ...tid.eyebrow, children: eyebrow }),
16701
16701
  title && /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: "dif w100 jcsb aic", children: [
16702
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("h4", { className: "fwb fz_20px lh_28px oh d_negwebkit_box wbo_vertical to_ellipsis wlc_2", ...tid.title, children: title }),
16702
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("h4", { className: "fw6 fz_20px lh_28px oh d_negwebkit_box wbo_vertical to_ellipsis wlc_2", ...tid.title, children: title }),
16703
16703
  (badge || badgeTags?.length) && /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: "dif aic gap1 fs0", ...tid.badge, children: [
16704
16704
  badge && /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("span", { className: "fw4 fz_14px lh_20px wsnw", children: badge }),
16705
16705
  badgeTags?.map((tag) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(Tag, { ...tag }, tag.text))