@economic/taco 2.71.0-type-check.0 → 2.71.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/taco.cjs +11 -1
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +6 -12
- package/dist/taco.js +11 -1
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.cjs
CHANGED
|
@@ -36812,7 +36812,16 @@ const RadioGroup$1 = React__namespace.forwardRef(function MenuRadioItem(props, r
|
|
|
36812
36812
|
}, [props.children]);
|
|
36813
36813
|
const handleChange = (value2) => props.onChange(getRadioItemByValue(values, value2));
|
|
36814
36814
|
const value = String(props.value ?? "");
|
|
36815
|
-
return /* @__PURE__ */ React__namespace.createElement(MenuRadioGroupContext.Provider, { value: { disabled: props.disabled } }, /* @__PURE__ */ React__namespace.createElement(
|
|
36815
|
+
return /* @__PURE__ */ React__namespace.createElement(MenuRadioGroupContext.Provider, { value: { disabled: props.disabled } }, /* @__PURE__ */ React__namespace.createElement(
|
|
36816
|
+
$d08ef79370b62062$export$a98f0dcb43a68a25,
|
|
36817
|
+
{
|
|
36818
|
+
...props,
|
|
36819
|
+
className: "flex flex-col",
|
|
36820
|
+
onValueChange: handleChange,
|
|
36821
|
+
ref,
|
|
36822
|
+
value
|
|
36823
|
+
}
|
|
36824
|
+
));
|
|
36816
36825
|
});
|
|
36817
36826
|
RadioGroup$1.Item = RadioItem;
|
|
36818
36827
|
const Separator = React__namespace.forwardRef(function Separator2(props, ref) {
|
|
@@ -51755,6 +51764,7 @@ const Select22 = React.forwardRef(function Select222(props, ref) {
|
|
|
51755
51764
|
}
|
|
51756
51765
|
if (!hasSearch && event.key === "Escape") {
|
|
51757
51766
|
event.preventDefault();
|
|
51767
|
+
event.stopPropagation();
|
|
51758
51768
|
setOpen(false);
|
|
51759
51769
|
return;
|
|
51760
51770
|
}
|