@homebound/beam 2.413.0-alpha.1 → 2.413.0-alpha.3
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 +5 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6834,7 +6834,7 @@ var variantStyles = (contrast) => ({
|
|
|
6834
6834
|
}
|
|
6835
6835
|
});
|
|
6836
6836
|
var sizeStyles = {
|
|
6837
|
-
sm: Css.hPx(
|
|
6837
|
+
sm: Css.hPx(40).pxPx(12).$,
|
|
6838
6838
|
md: Css.hPx(40).px1.$,
|
|
6839
6839
|
lg: Css.hPx(48).px3.$
|
|
6840
6840
|
};
|
|
@@ -16657,6 +16657,7 @@ function Filters(props) {
|
|
|
16657
16657
|
Button,
|
|
16658
16658
|
{
|
|
16659
16659
|
label: "More Filters",
|
|
16660
|
+
size: "md",
|
|
16660
16661
|
endAdornment: /* @__PURE__ */ jsx138(CountBadge, { count: numModalFilters, hideIfZero: true }),
|
|
16661
16662
|
variant: "secondary",
|
|
16662
16663
|
onClick: () => openModal({
|
|
@@ -16666,7 +16667,7 @@ function Filters(props) {
|
|
|
16666
16667
|
...testId.moreFiltersBtn
|
|
16667
16668
|
}
|
|
16668
16669
|
),
|
|
16669
|
-
Object.keys(filter).length > 0 && /* @__PURE__ */ jsx138("div", { children: /* @__PURE__ */ jsx138(Button, { label: "Clear", variant: "tertiary", onClick: () => onChange({}), ...testId.clearBtn }) })
|
|
16670
|
+
Object.keys(filter).length > 0 && /* @__PURE__ */ jsx138("div", { children: /* @__PURE__ */ jsx138(Button, { label: "Clear", size: "md", variant: "tertiary", onClick: () => onChange({}), ...testId.clearBtn }) })
|
|
16670
16671
|
]
|
|
16671
16672
|
}
|
|
16672
16673
|
);
|
|
@@ -16773,7 +16774,7 @@ function FilterDropdownMenu(props) {
|
|
|
16773
16774
|
}
|
|
16774
16775
|
),
|
|
16775
16776
|
renderFilters(),
|
|
16776
|
-
activeFilterCount > 0 && /* @__PURE__ */ jsx140(Button, { label: "Clear", variant: "tertiary", onClick: () => onChange({}), ...testId.clearBtn })
|
|
16777
|
+
activeFilterCount > 0 && /* @__PURE__ */ jsx140(Button, { label: "Clear", size: "md", variant: "tertiary", onClick: () => onChange({}), ...testId.clearBtn })
|
|
16777
16778
|
] }),
|
|
16778
16779
|
!isOpen && /* @__PURE__ */ jsx140(
|
|
16779
16780
|
FilterChips,
|
|
@@ -16825,7 +16826,7 @@ function FilterChips({
|
|
|
16825
16826
|
if (chips.length === 0) return null;
|
|
16826
16827
|
return /* @__PURE__ */ jsxs68("div", { css: Css.df.gap1.fww.aic.order(1).$, children: [
|
|
16827
16828
|
chips,
|
|
16828
|
-
/* @__PURE__ */ jsx140(Button, { label: "Clear", variant: "tertiary", onClick: onClear, ...testId.clearBtn })
|
|
16829
|
+
/* @__PURE__ */ jsx140(Button, { label: "Clear", size: "md", variant: "tertiary", onClick: onClear, ...testId.clearBtn })
|
|
16829
16830
|
] });
|
|
16830
16831
|
}
|
|
16831
16832
|
function buildFilterImpls(filterDefs) {
|