@homebound/beam 2.413.0-alpha.2 → 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 +6 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -5
- 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
|
};
|
|
@@ -8457,7 +8457,7 @@ function TextFieldBase(props) {
|
|
|
8457
8457
|
const fieldRef = useGetRef(inputRef);
|
|
8458
8458
|
const maybeSmaller = compound ? 2 : 0;
|
|
8459
8459
|
const fieldHeight = 40;
|
|
8460
|
-
const compactFieldHeight =
|
|
8460
|
+
const compactFieldHeight = 32;
|
|
8461
8461
|
const [bgColor, hoverBgColor, disabledBgColor] = inputStylePalette ? getInputStylePalette(inputStylePalette) : contrast ? ["rgba(100, 100, 100, 1)" /* Gray700 */, "rgba(141, 141, 141, 1)" /* Gray600 */, "rgba(100, 100, 100, 1)" /* Gray700 */] : borderOnHover ? (
|
|
8462
8462
|
// Use transparent backgrounds to blend with the table row hover color
|
|
8463
8463
|
["rgba(0,0,0,0)" /* Transparent */, "rgba(219, 234, 254, 1)" /* Blue100 */, "rgba(247, 245, 245, 1)" /* Gray100 */]
|
|
@@ -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) {
|