@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.js CHANGED
@@ -6484,7 +6484,7 @@ var ColumnStates = class {
6484
6484
  }
6485
6485
  setVisibleColumns(ids) {
6486
6486
  for (const cs of this.map.values()) {
6487
- cs.setVisible(ids.includes(cs.column.id));
6487
+ cs.setVisible(cs.column.isLayoutGutter ? true : ids.includes(cs.column.id));
6488
6488
  }
6489
6489
  }
6490
6490
  loadExpanded(storageKey) {
@@ -16236,7 +16236,7 @@ function TableCardView(props) {
16236
16236
  /* @__PURE__ */ jsxs50("div", { children: [
16237
16237
  eyebrow && /* @__PURE__ */ jsx86("p", { className: "fw4 fz_14px lh_20px", ...tid.eyebrow, children: eyebrow }),
16238
16238
  title && /* @__PURE__ */ jsxs50("div", { className: "dif w100 jcsb aic", children: [
16239
- /* @__PURE__ */ jsx86("h4", { className: "fwb fz_20px lh_28px oh d_negwebkit_box wbo_vertical to_ellipsis wlc_2", ...tid.title, children: title }),
16239
+ /* @__PURE__ */ jsx86("h4", { className: "fw6 fz_20px lh_28px oh d_negwebkit_box wbo_vertical to_ellipsis wlc_2", ...tid.title, children: title }),
16240
16240
  (badge || badgeTags?.length) && /* @__PURE__ */ jsxs50("div", { className: "dif aic gap1 fs0", ...tid.badge, children: [
16241
16241
  badge && /* @__PURE__ */ jsx86("span", { className: "fw4 fz_14px lh_20px wsnw", children: badge }),
16242
16242
  badgeTags?.map((tag) => /* @__PURE__ */ jsx86(Tag, { ...tag }, tag.text))