@homebound/beam 3.46.0 → 3.47.0

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
@@ -17130,7 +17130,7 @@ function CardView({
17130
17130
  paddingLeft: "pl3"
17131
17131
  }), children: cardRows }) });
17132
17132
  }
17133
- return /* @__PURE__ */ jsx95("div", { className: "pt2 pb2 h100", children: /* @__PURE__ */ createElement2(VirtuosoGrid, { useWindowScroll: inDocumentScrollLayout && !customScrollParent, ...customScrollParent ? {
17133
+ return /* @__PURE__ */ jsx95("div", { className: "pb2 h100", children: /* @__PURE__ */ createElement2(VirtuosoGrid, { useWindowScroll: inDocumentScrollLayout && !customScrollParent, ...customScrollParent ? {
17134
17134
  customScrollParent
17135
17135
  } : {}, ...validatedScrollIndex !== void 0 ? {
17136
17136
  initialTopMostItemIndex: validatedScrollIndex
@@ -20900,7 +20900,15 @@ function GridTableLayoutActionsComponent(props) {
20900
20900
  }
20901
20901
  };
20902
20902
  }
20903
- return /* @__PURE__ */ jsxs75("div", { className: "df fdc gap1 pb2", children: [
20903
+ return /* @__PURE__ */ jsxs75("div", { ...trussProps78({
20904
+ display: "df",
20905
+ flexDirection: "fdc",
20906
+ gap: "gap1",
20907
+ paddingBottom: "pb2",
20908
+ ...view === "card" ? {
20909
+ paddingBottom: "pb3"
20910
+ } : {}
20911
+ }), children: [
20904
20912
  /* @__PURE__ */ jsxs75("div", { ...trussProps78({
20905
20913
  display: "df",
20906
20914
  gap: "gap1",
@@ -20911,7 +20919,7 @@ function GridTableLayoutActionsComponent(props) {
20911
20919
  paddingRight: "pr3"
20912
20920
  } : {}
20913
20921
  }), children: [
20914
- /* @__PURE__ */ jsxs75("div", { className: "df gap1 aic", children: [
20922
+ /* @__PURE__ */ jsxs75("div", { className: "df gap_12px aic", children: [
20915
20923
  !sm && hasSearch && /* @__PURE__ */ jsx156("div", { className: "w_244px", children: searchTextField }),
20916
20924
  sm && hasSearch && /* @__PURE__ */ jsx156(IconButton, { variant: "outline", icon: searchValue ? "searchBadged" : "search", label: "Search", onClick: () => setShowSearch(!showSearch), active: showSearch, ...testId.searchButton }),
20917
20925
  sm && hasFilters && /* @__PURE__ */ jsx156(IconButton, { variant: "outline", icon: activeFilterCount > 0 ? "filterBadged" : "filter", label: "Filter", onClick: () => setShowFilters(!showFilters), active: showFilters, ...testId.filterSmallButton }),
@@ -20920,7 +20928,7 @@ function GridTableLayoutActionsComponent(props) {
20920
20928
  /* @__PURE__ */ jsx156(Icon, { icon: showFilters ? "chevronUp" : "chevronDown" })
20921
20929
  ] }), variant: "secondaryBlack", onClick: () => setShowFilters(!showFilters), active: showFilters, ...testId.filterButton })
20922
20930
  ] }),
20923
- (hasHideableColumns || withCardView) && /* @__PURE__ */ jsxs75("div", { className: "df gap1", children: [
20931
+ (hasHideableColumns || withCardView) && /* @__PURE__ */ jsxs75("div", { className: "df gap_12px", children: [
20924
20932
  hasHideableColumns && view === "list" && columns && api && /* @__PURE__ */ jsx156(EditColumnsButton, { columns, api, tooltip: "Display columns" }),
20925
20933
  withCardView && view !== void 0 && setView && /* @__PURE__ */ jsx156(ViewToggleButton, { view, onChange: setView })
20926
20934
  ] })